Disable <tab>-based bindings by default

fixes #274
This commit is contained in:
Bart Brouns 2019-10-28 15:28:16 +01:00 committed by Pierre Neidhardt
parent 61bb63e8f9
commit ace73501c2
2 changed files with 4 additions and 4 deletions

View File

@ -30,12 +30,12 @@
(require 'evil-collection) (require 'evil-collection)
(require 'outline) (require 'outline)
(defcustom evil-collection-outline-bind-tab-p t (defcustom evil-collection-outline-bind-tab-p nil
"Enable <tab>-based bindings in Outline mode. "Enable <tab>-based bindings in Outline mode.
Unless you have Evil bindings set up for Org mode, Org will Unless you have Evil bindings set up for Org mode, Org will
inherit the <tab>-based bindings from Outline. Set this option preserve the Emacs-state <tab> keys in Org mode. Set this option
to nil if you want to preserve the Emacs-state <tab> keys in Org to t if you want to inherit the <tab>-based bindings from Outline
mode." mode."
:group 'evil-collection-outline :group 'evil-collection-outline
:type 'boolean) :type 'boolean)

View File

@ -95,7 +95,7 @@ more.
| Variable | Default | Description | | Variable | Default | Description |
|--------------------------------------------+---------+-------------------------------------------------------------------| |--------------------------------------------+---------+-------------------------------------------------------------------|
| evil-collection-company-use-tng | t | Set up autocompletion to be similar to Vim's YouCompleteMe. | | evil-collection-company-use-tng | t | Set up autocompletion to be similar to Vim's YouCompleteMe. |
| evil-collection-outline-bind-tab-p | t | Enable <tab>-based bindings in Outline mode. | | evil-collection-outline-bind-tab-p | nil | Enable <tab>-based bindings in Outline mode. |
| evil-collection-term-sync-state-and-mode-p | t | Synchronize insert/normal state with char/line-mode in term-mode. | | evil-collection-term-sync-state-and-mode-p | t | Synchronize insert/normal state with char/line-mode in term-mode. |
| evil-collection-setup-minibuffer | nil | Set up Vim style bindings in the minibuffer. | | evil-collection-setup-minibuffer | nil | Set up Vim style bindings in the minibuffer. |
| evil-collection-setup-debugger-keys | t | Set up debugger keys for certain modes. | | evil-collection-setup-debugger-keys | t | Set up debugger keys for certain modes. |