Setting:
(setq evil-move-cursor-back nil)
will navigate you to after the last paren.
See: https://github.com/syl20bnr/spacemacs/issues/646
Setting:
(setq evil-move-cursor-back nil)
will navigate you to after the last paren.
See: https://github.com/syl20bnr/spacemacs/issues/646
(add-hook 'org-capture-mode-hook 'evil-insert-state)
It will put you automatically into insert mode.
web-mode
.
Hey presto, the answer is already on stackoverflow.
Put this in the user-config
section of .spacemacs
:
(add-to-list 'auto-mode-alist '("\\.blade.php\\'" . web-mode))
M-x describe-key
to find out what the name is of the command that is performed by a particular key binding.
dotspacemacs-additional-packages '(some-other-package geben)
[xdebug] xdebug.remote_enable=On xdebug.remote_host=localhost xdebug.idekey=geben xdebug.remote_autostart=On
That should trigger geben. Debugging time!
A bonus note: I didn’t have any luck with geben-find-file when trying to add breakpoints to other files in the project, but using geben-open-file worked (just a little bit more cumbersome.)
Adding the settings there to the user-init function did the trick:
(setq tramp-ssh-controlmaster-options "-o ControlMaster=auto -o ControlPath='tramp.%%C' -o ControlPersist=no")