Andrew Scott

Results 7 comments of Andrew Scott

> An other problem with vim-sneak, after I press s/S to invoke vim-sneak. The ;/, key can only be used to repeat last sneak search, not the quick-scope f/F/t/T one,...

Do you mean using [search options in file links](https://orgmode.org/manual/Search-options.html#Search-options)? You could replicate the behavior of `wiki:keyword` links by changing `org-wiki--open-page` to: ``` elisp (defun org-wiki--open-page (pagename_section) "Open or create new...

I'm glad it works for you. I originally put the WIP in the title because emacs seemed to repeatedly write to the files holding the token for each account and...

I've merged the master branch into this branch but haven't tested the *-at-point functions or looked at this code for a while so let me know how you get on.

Is it possible for lighthouse to show on the screen that currently has focus?

Also trips on `:p fromElisp "(foo ?[)"` which afaict was supported prior to https://github.com/talyz/fromElisp/commit/92097d081cd0210f7ee207720645c4d589a9b836

The `interactive` forms should apparantly use `read-char` to work with multiple-cursors: ``` (interactive (list (prefix-numeric-value current-prefix-arg) (read-char "Zap to char: " t))) ``` https://emacs.stackexchange.com/questions/18716/why-does-multiple-cursors-use-the-same-char-for-all-cursors-with-zap-to-char-but