Author Topic: What features and/or improvements would you like to see in SlickEdit?  (Read 112236 times)

Graeme

  • Community Member
  • Posts: 1338
  • Hero Points: 154
Re: What features and/or improvements would you like to see in SlickEdit?
« Reply #510 on: July 15, 2012, 01:51:04 AM »
If I put the cursor on a closing brace I would like the preview window to show me the code for the opening brace.

I would like a "find assignments" command similar to find references - it would find all the places where an assignment is made to the variable at the cursor.

hs2

  • Community Member
  • Posts: 2471
  • Hero Points: 252
Re: What features and/or improvements would you like to see in SlickEdit?
« Reply #511 on: July 15, 2012, 08:23:29 AM »
Quote
If I put the cursor on a closing brace I would like the preview window to show me the code for the opening brace.
A more general solution would be even better:
Show all 'next' matches of 'find_matching_paren' also covering begin/end pairs.
HS2

HairySasquatchFL

  • Community Member
  • Posts: 2
  • Hero Points: 0
Re: What features and/or improvements would you like to see in SlickEdit?
« Reply #512 on: July 25, 2012, 07:40:34 PM »
I would love a feature to find a caller tree for a symbol. Simillar to find references, but then it would find references for all instances that use the original symbol until a root was found. This would greatly help in understanding how a symbol is used which will help understand the implications of changing it.

jimlangrunner

  • Community Member
  • Posts: 266
  • Hero Points: 21
Re: What features and/or improvements would you like to see in SlickEdit?
« Reply #513 on: July 26, 2012, 10:10:42 AM »
I'm still looking for the ability to put multiple vertical lines on screen. (I _really_ miss that from CodeWright, though it's been 7 years.)
Jim Lang
Student

mpenacho

  • Community Member
  • Posts: 1
  • Hero Points: 0
Re: What features and/or improvements would you like to see in SlickEdit?
« Reply #514 on: July 29, 2012, 01:58:43 PM »
More assignable keys via macros:
   There are #defines for alt-keys (A_UP, A_DOWN), shift-keys (S_TAB, S_F9), control-keys (C_DEL, C_N).
   I would really like to have combinations available, namely these:
      execute('bind-to-key mp_scroll_window_down 'event2index(C_S_DOWN));
      execute('bind-to-key mp_scroll_window_up 'event2index(C_S_UP));
      execute('bind-to-key mp_convert_bin_to_hex 'event2index(C_S_N));
      execute('bind-to-key mp_invert_hex 'event2index(C_A_S_N));
      execute('bind-to-key mp_convert_hex_to_ascii 'event2index(C_'));
      execute('bind-to-key mp_convert_ascii_to_hex 'event2index(C_S_'));
      execute('bind-to-key maybe_split_insert_line 'event2index(C_ENTER));
      execute('bind-to-key rubout 'event2index(S_BACKSPACE));

   (although C_' would probably have to be something like C_TICK)

Sort the entries in the box that pops up after a PUSH_TAG by project, putting the current project first:
   I keep several, very similar projects in my workspace, and switch between them several times a day.  Since these have many duplicate, or nearly duplicate files, when I press my 'push-tag' key (ctrl-.), sometimes as many as a dozen file locations will pop up as potential function sources.  I then have to manually find the file location in the list that corresponds to my current project.  If it sorted the list by project, putting the files from the current project first, this would save me a lot of accidental errors.

chrisant

  • Community Member
  • Posts: 1265
  • Hero Points: 119
Re: What features and/or improvements would you like to see in SlickEdit?
« Reply #515 on: July 30, 2012, 06:35:02 AM »
More assignable keys via macros:
   There are #defines for alt-keys (A_UP, A_DOWN), shift-keys (S_TAB, S_F9), control-keys (C_DEL, C_N).
   I would really like to have combinations available, namely these:
      execute('bind-to-key mp_scroll_window_down 'event2index(C_S_DOWN));
...

I think you might be looking for the name2event() function:

Code: [Select]
event2index(name2event("C-S-DOWN"))

dwgriffith

  • Community Member
  • Posts: 85
  • Hero Points: 1
Re: What features and/or improvements would you like to see in SlickEdit?
« Reply #516 on: August 01, 2012, 08:38:56 PM »
Visual Studio for C++ provide a separate buffer for each of the tools that are configured. Thus when Lint is configured as a tool and is run there is a show output from lint in the output window.

It would be nice if SlickEdit provided a similar capability. You may not need to provide a window or buffer for each tool but you could possible provide a buffer selector and optional buffer name in the tool setup dialog. That would allow 3 different lint tool setups to select a single buffer to feed into.

The result is being able to see the compile or build errors of the project and the lint errors in different buffers that can be selected.

jc44

  • Community Member
  • Posts: 78
  • Hero Points: 0
Re: What features and/or improvements would you like to see in SlickEdit?
« Reply #517 on: August 02, 2012, 01:56:55 PM »
I would like the "Project/Project Properties/Files/Add Tree..." selector to be multi-select capable.  On project creation I often want to be able to add 10 directories to my project from a directory that contains about 40 - it is very dull having to do them one at a time whereas being able to ctrl-click all the ones I want before hitting OK would be a lot faster.  The Project Properties/Files list has proper multi-select, as does the "Add Files..." dialogue - it is just "Add Tree..." that doesn't.

Thanks

John Cox

guth

  • Community Member
  • Posts: 6
  • Hero Points: 0
Re: What features and/or improvements would you like to see in SlickEdit?
« Reply #518 on: August 09, 2012, 06:02:10 PM »
How about extending file manager with the following:

* being able to go one level up with a key
* when doing an operation, e.g., copying a set of files, the dialog box popping up could help completing the path
* when having the cursor over a path, another buffer loads the file and shows its contents, and when the cursor moves the same buffer is updated with a new file's contents.

jorick

  • Community Member
  • Posts: 107
  • Hero Points: 1
Re: What features and/or improvements would you like to see in SlickEdit?
« Reply #519 on: August 14, 2012, 08:54:31 PM »
Right clicking brings up a context menu with Quick Search at the top.  But if the cursor is too far down the screen, the popup menu pops up with the cursor at the bottom of the menu.  It would be nice if Quick Search was duplicated at the bottom of the menu.

I have to set it up this way every time I upgrade SlickEdit, and that's getting old.

Another nice thing to have would be to duplicate a menu item so I don't have to copy and paste to add a duplicate (or close) item.

TKasparek

  • Community Member
  • Posts: 39
  • Hero Points: 5
Re: What features and/or improvements would you like to see in SlickEdit?
« Reply #520 on: August 20, 2012, 07:21:19 PM »
Quote
If I put the cursor on a closing brace I would like the preview window to show me the code for the opening brace.
A more general solution would be even better:
Show all 'next' matches of 'find_matching_paren' also covering begin/end pairs.
HS2

I REALLY like this idea!! I could see myself using this a lot with larger rewrites; trying to find a missed/to many braces.

davea

  • Community Member
  • Posts: 18
  • Hero Points: 3
Re: What features and/or improvements would you like to see in SlickEdit?
« Reply #521 on: August 21, 2012, 06:44:17 PM »
Please add F1 help integration with the current Visual Studio 2010 Help system.

I found the MSDN Help integration to be quite useful, but alas...this feature is not compatible with the new MS help system.  :(

ewendt

  • Community Member
  • Posts: 32
  • Hero Points: 2
Re: What features and/or improvements would you like to see in SlickEdit?
« Reply #522 on: August 24, 2012, 05:05:00 AM »
Is it possible to replace QT Creator with slickedit?   ???
I did not found that SE loads a *.pro project file.  :(

The advantage from QT Creator may be the knowledge about all the symbols, classes and functions in the QT Api, but I think, SE might learn this by tagging the API Header Files.  ;)

jwagner

  • Community Member
  • Posts: 5
  • Hero Points: 1
Re: What features and/or improvements would you like to see in SlickEdit?
« Reply #523 on: August 31, 2012, 06:53:52 PM »
I would love to see a beautifier option for Verilog.

jnairb

  • Community Member
  • Posts: 75
  • Hero Points: 1
Re: What features and/or improvements would you like to see in SlickEdit?
« Reply #524 on: September 04, 2012, 08:10:53 PM »
I'd like a function that when called with the cursor on a C/C++ continue statement would jump to the beginning of the loop, and with the cursor on a C/C++ break statement would jump to the end of the loop/switch block.