Merge pull request #331 from scmbreeze/fix-wrapped-commands-example

[example] switch to declaring wrapped commands as an array
This commit is contained in:
Will Owens
2024-02-16 16:03:14 -05:00
committed by GitHub

View File

@@ -126,6 +126,6 @@ git_add_and_amend_commit_keys="\C-xz" # CTRL+x, z
# Expand numbered args for common shell commands # Expand numbered args for common shell commands
shell_command_wrapping_enabled="true" shell_command_wrapping_enabled="true"
# Here you can tweak the list of wrapped commands. # Here you can tweak the list of wrapped commands.
scmb_wrapped_shell_commands="vim emacs gedit cat rm cp mv ln cd ls less subl code" scmb_wrapped_shell_commands=(vim emacs gedit cat rm cp mv ln cd ls less subl code)
# Add numbered shortcuts to output of ls -l, just like 'git status' # Add numbered shortcuts to output of ls -l, just like 'git status'
shell_ls_aliases_enabled="true" shell_ls_aliases_enabled="true"