Recent content by Łukasz

  1. Ł

    [Bug] Page Down i code assistant window

    Yes. It works as you said.
  2. Ł

    [Bug] Page Down i code assistant window

    Page Down not working in autocomplete window.
  3. Ł

    [Bug] Formatting to one line

    It fromatting like this: create or replace function getTest return varchar2 is begin return case i_element when '1' then 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.' when '2' then 'Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.' when '3'...
  4. Ł

    [Bug] Error on restoring

    Error log not created.
  5. Ł

    [Bug] On line in multi line dbms_output

    begin for c in 1 .. 10 loop Dbms_Output.put_line(c || ' -> ab' || chr(13) || chr(10) || 'cd' || chr(13) || chr(10) || 'ef'); end loop; end; This code shows only first line from every put_line: When I select something some fragments shows up: When I select all and copy to notepad...
  6. Ł

    [Bug] 0 height code completions window

    Ok. I'll check in beta 3.
  7. Ł

    [Bug] 0 height code completions window

    Unfortunately not. Hence the suggestion to set the minimum height.
  8. Ł

    [Bug] 0 height code completions window

    Sometimes code completions window set height to 0. It would be good if the window had a minimum height of at least one line of text .
  9. Ł

    [Bug] Input error

    On linux this bug also occurs. If you enter value an then click OK button in Variables window everything works fine. If you enter value and then press enter key then this message box shows. -- Variable="input" Type="String" Required select :input from dual
  10. Ł

    [Bug] AV on click "Find next"

    Awesome!
  11. Ł

    [Bug] AV on click "Find next"

    "0 items found" left from my tests of when the error occurs and when it doesn't. But, on fresh app AV also occurs. This steps caused AV for my. Also in Beta 2. Errors occurs even for simple package like this: create or replace package abc is -- end abc; / create or replace package body...
  12. Ł

    [Bug] AV on click "Find next"

    It occurs every time: Edit Package & body -> Ctrl + F -> Enter any text which you can find i this package -> Find next -> AV. If you enter text which not occurs in package everything works fine. My find configuration:
  13. Ł

    [Bug] AV on click "Find next"

    AV on click "Find next"
  14. Ł

    [Bug] Exception on opening clob

    create or replace function getClob return clob is begin return '123'; end; -- Variable="testVar" Type="CLOB" begin :testVar := getClob; end; When I execute this query and try to open clob I get "Unexpected error. Invalid class typecast".
  15. Ł

    [Feature Request] Shortcut for copy in DBMS Output

    Now I can select text -> click right mouse -> select copy, but shortcut Ctrl + C not working here. When I press Ctrl text deselects.
Back
Top