diff --git a/doc/DOCUMENTATION.md b/doc/DOCUMENTATION.md index b6710261e..150de211d 100644 --- a/doc/DOCUMENTATION.md +++ b/doc/DOCUMENTATION.md @@ -780,7 +780,6 @@ Some graphical UI indicators can be toggled on and off (toggles start with `t`): SPC t 8 | display a mark on the 80th column SPC t F | toggle frame fullscreen SPC t f | toggle display of the fringe -SPC t C-f | toggle auto fill mode (break lines beyond `current-fill-column`) SPC t h | toggle highlight of the current line SPC t i | toggle aggressive indent SPC t l | toggle truncate lines @@ -2019,7 +2018,7 @@ Key Binding | Function SPC m t b | execute buffer tests SPC m t q | ask for test function to execute -### Managing projects +## Managing projects Projects in `Spacemacs` are managed with [projectile][projectile]. In `projectile` projects are defined implicitly, for instance the root of a diff --git a/spacemacs/keybindings.el b/spacemacs/keybindings.el index 88dcc8446..2143c167b 100644 --- a/spacemacs/keybindings.el +++ b/spacemacs/keybindings.el @@ -186,6 +186,11 @@ :off (auto-fill-mode -1) :documentation "Break line beyond `current-fill-column` while editing." :evil-leader "t C-f") +(spacemacs|add-toggle debug-on-error + :status nil + :on (toggle-debug-on-error) + :documentation "Toggle display of backtrace when an error happens." + :evil-leader "t D") (spacemacs|add-toggle tool-bar :if window-system :status tool-bar-mode