mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-03 07:13:59 +01:00
New function jumptToDefinition. This takes token at the current cursor position and then looks for that function definition as a set piece of text 'function '+tokenString. This is triggered from CTRL+J so you can hit this whenever you're on a function call and it will jump to it's declaration. In doing this I have repurposed the 1st param in findReplace function to now accept a string to find. Previously we had this set to action, but this variable was never used, must have just been a placeholder. In the couple of places we call this function now we are passing the find input box value.