You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I couldnt get autocomplete working with terminus. i assume its because of the insert method.
I've come up with a hacky workaround and figured id share incase it helps someone.
When the custom autocomplete command is run, it copies the word at the terminus cursor to an input panel and shows sublime's autocomplete list.
Then you can select the autocomplete and modify as usual.
Then pressing enter will delete the word from terminal and insert the finalized autocompletion
i added the following keybind { "keys": ["ctrl+space"], "command": "terminus_autocomplete", "context": [{"key": "terminus_view"}] }
and created teminus_autocomplete.py in Packages/User folder
I couldnt get autocomplete working with terminus. i assume its because of the insert method.
I've come up with a hacky workaround and figured id share incase it helps someone.
When the custom autocomplete command is run, it copies the word at the terminus cursor to an input panel and shows sublime's autocomplete list.
Then you can select the autocomplete and modify as usual.
Then pressing enter will delete the word from terminal and insert the finalized autocompletion
i added the following keybind
{ "keys": ["ctrl+space"], "command": "terminus_autocomplete", "context": [{"key": "terminus_view"}] }
and created
teminus_autocomplete.py
inPackages/User
folderi have my snippet
scope
assource.shell
so i set the input_panel syntax toshell.tmLanguage
to limit the autocompletes. but thats not a required stepThe text was updated successfully, but these errors were encountered: