advice2020 left a comment (geany/geany-plugins#1521) @Skif-off Skiiffff! I have missed my friend. Slowly many of the applications I have been using all of a sudden all developed bugs that made them either unusable or difficult to use. Thank you for your response with these suggestions I was able to try these out. No I know `geany.keycmd` will not help in this case, just mentioned because it was somewhat similar, but in this case trying to replicate an existing action that has no keybinding / action accessible inside Geany. The `geany.navigate` suggestion you mentioned is a good example, it functions similarly to `geany.keycmd`, so it was close Skif :)
--------------------------------------- `geany.navigate` Good observation/suggestion, thank you these work great, covers most of the keys I mentioned in my thread post list. They worked even better once I realized you have to add the damn quotes! :) `geany.navigate ( "page", 1 )` --------------------------------------- `geany.scintilla` It was mentioned to me that users cannot access SCI type commands, I was not thinking about GeanyLua accessing them. On the "Scintilla Documentation" page I see that the navigation based actions covered by `geany.navigate` are also available under "Keyboard Commands" section of Scintilla. `geany.scintilla ( "SCI_PAGEDOWN" )` With the last 3 items on my list, I do not think I have a choice. Some of the naming used was tricky, I tried many but could not find the command for the DELETE key, if you or anyone else knows? DELETE `geany.scintilla ( "????????????" )` Could not find? BACKSPACE `geany.scintilla ( "SCI_DELETEBACK" )` ENTER/RETURN `geany.scintilla ( "SCI_NEWLINE" )` Luckily saw this, does not contain ENTER or RETURN in the name You had helped me with case tools, there is even these available SCI_LOWERCASE & SCI_UPPERCASE As always, thank you so much for all of your help, I really appreciate it. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/issues/1521#issuecomment-3587642990 You are receiving this because you are subscribed to this thread. Message ID: <geany/geany-plugins/issues/1521/[email protected]>
