Wait... huh? "SciTE with python extension" ???
Did you mean "SciTE with Lua extension" ?
Or are you saying that there is now an actual Python scripting extension for Scite? That does not depend on Lua?
Very curious...
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
There is python extension for scite dating from 2011.
See: https://code.google.com/p/scite-files/wiki/CustomBuilds_SciTEPython
I could only run python scripts by modifying the 'callFromCmd' function in scite_extend.py (see readme.txt in scite_python_extend_0_5_win32.zip).
In SciTE with python extension you can scroll up/down in the userList with the cursor keys.
How can I do this in pythonscript for npp?
example code:
itemList = 'choice1 choice2 choice3 choice4 choice5 choice6 choice7 choice8'
editor.userListShow(12, itemList)
Wait... huh? "SciTE with python extension" ???
Did you mean "SciTE with Lua extension" ?
Or are you saying that there is now an actual Python scripting extension for Scite? That does not depend on Lua?
Very curious...
There is python extension for scite dating from 2011.
See:
https://code.google.com/p/scite-files/wiki/CustomBuilds_SciTEPython
I could only run python scripts by modifying the 'callFromCmd' function in scite_extend.py (see readme.txt in scite_python_extend_0_5_win32.zip).
def callFromCmd():
ScApp.MsgBox('Called from cmd')
itemList = 'choice1 choice2 choice3 choice4 choice5 choice6 choice7 choice8'
ScEditor.UserListShow(12, itemList)
Hah! Wow. I had no idea that was out there. Very interesting. I'll have to look into that when I get some time. Just for grins.
Thanks! ;)
Good luck on your list issue. Wish I could help but UI stuff is not in my arena. :-|