Go To Column...

Go To Column...

5
NewbieNewbie
5

    Sep 19, 2005#1

    CTRL+G is awsome for saving time in search lines...

    Is there any one for Go To Column??

    Thanks!!

    6,681583
    Grand MasterGrand Master
    6,681583

      Sep 20, 2005#2

      No, sorry. I would also like a "Goto column" feature.

      Edited on 2006-09-11: Since v11.20 of UltraEdit the Goto Line dialog allows also optional a column number to be specified. Really perfect working is the "Goto column" since v11.20a.
      Best regards from an UC/UE/UES for Windows user from Austria

      24
      Basic UserBasic User
      24

        Sep 20, 2005#3

        Here is a macro I use for a goto column feature:

        InsertMode
        ColumnModeOff
        HexOff
        UnixReOff
        IfSel
        IfColNum 1
        Key HOME
        StartSelect
        Key RIGHT ARROW
        Else
        StartSelect
        Key RIGHT ARROW
        EndIf
        Else
        Key HOME
        Key RIGHT ARROW
        StartSelect
        Key HOME
        EndIf

        You can then add a Menu "Goto Column" by selecting Advanced->Customize Menus and copying the Menu Item Macro->Play Any/Multiple Times to the Search Menu and renaming it "Goto Column".
        Then to go to Column 10 you select the Search->Goto Column and enter 10 in the edit Box: Specify number of times to play macro. The macro will go to column 9 and so you have to go one more place to the right.

        Hope you find this useful!

        5
        NewbieNewbie
        5

          Sep 20, 2005#4

          Thank you!!

          But this feature continues a very good wish for some next version... ;)