mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-07-10 14:04:24 +02:00
Done
This commit is contained in:
parent
3338d39206
commit
edc87670eb
16 changed files with 1096 additions and 13 deletions
9
disable_flow_control.sh
Normal file
9
disable_flow_control.sh
Normal file
|
@ -0,0 +1,9 @@
|
|||
# Disable flow control (Ctrl+S, Ctrl+Q) in the terminal
|
||||
# This allows Ctrl+S to be used for saving in Neovim
|
||||
stty -ixon
|
||||
|
||||
# Optional: You can also add this line to make Ctrl+S work in programs that use readline
|
||||
# (like the bash/zsh command line itself)
|
||||
if [ -t 0 ]; then
|
||||
bind -r '\C-s' 2>/dev/null || true
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue