-
Notifications
You must be signed in to change notification settings - Fork 719
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Start kakoune in insert mode #4123
Comments
|
You might want to start insert mode when creating a new client:
hook -group start-insert-mode global KakBegin '.*' 'execute-keys i'
hook -group start-insert-mode global ClientCreate '.*' 'execute-keys i' With this config, See Hooks for other events. |
Thank you! it worked! A bit curious why this "no-hooks" shows up automatically now: |
Replace with See |
That fixed it, thank you so much! |
I'm trying to do this for a specific filetype. I got something like this but this is not working :(
|
Try with |
Mhh can you be more specific ? I think I tried all combination without success :D |
Okay I found my way with :
|
Hi.
I'm making the switch from nano to kakoune, and was wondering if it's possible to start kakoune in insert mode?
Might be something people generally NOT want to do, but as for the switch from nano, I think it's one step in the right direction
In vim, I know you can do this with
vim -c 'startinsert' FILENAME
The text was updated successfully, but these errors were encountered: