Recent content by William Robertson

  1. William Robertson

    PL/SQL Beatifier and CASE inline

    Also, keeping when/then on the same line would also save me a lot of manual editing: case when xxx then 1 when yyy then 2 when zzz then 3 else 4 end
  2. William Robertson

    Test Window shows old procedure / function Code after recompiling

    It sounds as though compiling your procedures in the Command window has failed somehow. If you view the database source, is the new version or the old version in the database? I don't think your issue is related to the Test window. In 20 years of using PL/SQL Developer, I have never tried...
  3. William Robertson

    Test Window shows old procedure / function Code after recompiling

    I'm curious about your workflow. You edit your source file in a program window, but you can't see the change you just made? I don't understand. Or are you saying you made the change in another editor such as Notepad++ and the program window is not automatically refreshing?
  4. William Robertson

    Ctrl x, ctrl v ctrl a problem

    Can you try mapping them explicitly in the Key Configuration preferences page? Find Edit / Clipboard / Cut and set the key as Ctrl-X, and so on.
  5. William Robertson

    v16 beautifier adds space after OVER

    I agree that you should have the choice, and unexpected changes complicate change history and pull requests etc, but not having a space there seems a rather odd preference to me. Normally you would have no space between a function and its arguments, like nvl(somevalue, 0) and not nvl...
  6. William Robertson

    New feature doesn't work

    I'm curious how you would execute a PL/SQL block in a Program window. That's what Test Windows are for, isn't it?
  7. William Robertson

    Wrong characters in default value

    The same thing happens in SQL*Plus, so I don't think it's a PL/SQL Dev issue. The default value is stored as a string so a conversion to numeric is required at insert time anyway, but maybe the stray CRLF requires an extra processing step that could show up at high volumes. Maybe someone less...
  8. William Robertson

    Error druing debuging

    Not a solution, but rather than killing via Task Manager you can often cancel the currently executing call from another window (or another instance of PL/SQL Dev if running in dual session mode - or SQL*Plus of course but you need to find the sid/serial you want to cancel). This at least...
  9. William Robertson

    Multiple selection from dropdown lists

    No, they seem to have the issue in the select list. Maybe they are just doing it wrong somehow. I'll see if I can try it myself on their PC, though it's not always possible when you are screen-sharing remotely.
  10. William Robertson

    Multiple selection from dropdown lists

    I’m not sure how I would do that, as it would just be the same scenario but they can only pick one item off the list where I can pick multiple items, using the same version of PL/SQL Developer (12, though lucky colleagues in another office have 15 but the same issue) and Windows 10. I was just...
  11. William Robertson

    Multiple selection from dropdown lists

    For example, if I start typing a query like select s. from user_sequences s so that Code Assistant pops up a list of columns to expand "s." I have noticed colleagues painstakingly selecting one item at a time, but when I suggest using control-click to select multiple items, it only lets...
  12. William Robertson

    Multiple selection from dropdown lists

    In PL/SQL Developer 12, I can select multiple items from lists using control-click, but this doesn't seem to work for some of my colleagues. Is there some setting that could affect this? I've looked but I can't see anything likely, and I'm not sure why there would be a preference setting for it...
  13. William Robertson

    Default editor font

    I notice Plyxon defaults to the legacy Courier New as its editor font. Can I suggest instead defaulting to Consolas on Windows, or shipping with Fira Code, to give it a cleaner and more modern look. (I see it supports ligatures - nice!)
  14. William Robertson

    Problems with typing and displaying tab characters

    Personally I think Plyxon could be an opportunity to drop the tab character for good. In 30 years of Oracle development I have only ever seen it used accidentally, by developers who didn't bother to disable some setting and end up entering a random mix of tabs and spaces, messing up their layout...
  15. William Robertson

    debug hover stopped working

    Noticed the same thing occasionally in version 13, maybe once every couple of months so not sure what triggers this, but restart fixes it for me.
Back
Top