Felipe Lema
Felipe Lema
I'm using this branch and it seems to fix #335 👍🏾
here's that same script without the need for vim-repeat (I haven't tested it thoroughly, though) ```lua -- https://gist.github.com/kylechui/a5c1258cd2d86755f97b10fc921315c3 -- https://www.vikasraj.dev/blog/vim-dot-repeat local hop = require("hop") local builtin_targets = require("hop.jump_target") _G._repeated_hop_state =...
ah, it looks like https://github.com/FelipeLema/emacs-counsel-gtags/commit/1df9b2ee9b6d3773ce1c45c94cb3225606de246b did the trick. can you run unit tests by yourself? stand on the root of this package and run `make test`. Paste the output here...
It's using [`straight.el`](https://github.com/raxod502/straight.el) to booststrap necessary packages. The other thing you can do is open `test/unit-tests.el`, `M-x eval-buffer` and `M-x ert` to run all tests manually.
a-ha... I can sniff that `ag` or your favorite grep program is printing special terminal characters (for coloring the terminal). This may pinpoint to the problem. what's the value of...
@a1406 glad to hear you got it working all right. global-tags.el is currently being added to melpa, see https://github.com/melpa/melpa/pull/6442 You can file a bug report to global-tags.el for the error...
acknowledged, although this might take me a bit since this package is scoring very low among my priorities
Is there a ggtags command that does this? something like `ggtags-find-header-file`?
this was [implemented recently](https://git.launchpad.net/global-tags.el/commit/?id=08f828f4078bcb6bb6aa15c818b4709cd73a2834) in [`global-tags.el`](https://melpa.org/#/global-tags), ~~so now I'm clear on what to do here~~ ~~Feel free to use `global-tags.el` in the meantime.~~ I hardly advice you switch to `global-tags.el`...
what about using [`persist-defvar`](https://elpa.gnu.org/packages/persist.html)? I use for my [`frecentf.el` package](https://melpa.org/#/frecentf) and it saves / restores the persisted hash table per Emacs session without any extra customizations.