Hi
I'm a newb
I want to do a find in files of the selected text added a ":" in the end, then navigate to the first found file:
This is to find a specific label in some assembler code.
My initial macro is like this:
1) I do not know why the extra "" "" are inserted, but the macro editor does it when I save.
2) The macro now does make the search, but the output is guided to the editor instead of the output window. It would be nice to have it go to the output window.
3) I have no clue on how to get the editor to open the found file and line number.
I hope you can help
rgds
Cyrex
I'm a newb
I want to do a find in files of the selected text added a ":" in the end, then navigate to the first found file:
This is to find a specific label in some assembler code.
My initial macro is like this:
Code: Select all
InsertMode
ColumnModeOff
HexOff
IfSel
FindInFiles "" "" "^s:"
Else
SelectWord
IfSel
FindInFiles "" "" "^s:"
EndIf
EndIf
2) The macro now does make the search, but the output is guided to the editor instead of the output window. It would be nice to have it go to the output window.
3) I have no clue on how to get the editor to open the found file and line number.
I hope you can help
rgds
Cyrex