Greg Hurrell

Results 403 comments of Greg Hurrell

Just to document the old logic here while it's still fresh in my mind, here are the relevant bits copied from various places: ```ruby def pwd ::VIM::evaluate 'getcwd()' end def...

I already started working on it, but it's unpleasantly complicated. I need to refactor to work around some assumptions that make it hard to do the simple thing (eg. `cd`...

[`traverse` branch](https://github.com/wincent/command-t/tree/traverse) has my work-in-progress on it, although I just stupidly ran `git reset --hard` and blew away some uncomitted changes that I had 😭.

@gokcehan I sent a PR with a possible implementation [here](https://github.com/gokcehan/lf/pull/1439). Lightly tested it and it seems to work. > From what I understand, ranger has converted the option from a...

Ok, so how about this: 1. Mark `drawbox` as deprecated, but translate it internally to the new setting[^new]. That way we can defer the actual breaking change of removing `drawbox`...

> I don't think it's currently possible with nvim-cmp I was just looking into this myself as I've been annoyed by this behavior for years (not just with nvim-cmp, but...

> It seems works for me. The difference is subtle, and I think it might be due to [this code](https://github.com/hrsh7th/nvim-cmp/blob/d818fd0624205b34e14888358037fb6f5dc51234/lua/cmp/source.lua#L169) that defaults to replacing on keyword boundaries. If you have...

Reading this thread has made me realize that there are actually two separate requests going on here. 1. The initial request is about having nvim-cmp recognize that the suffix helps...

> > In this instance Insert behavior would have done what I wanted, and MatchSuffix would have also; the line would contain "(KubernetesServices → Clusters → Data centers" and I'd...

> The cursor position is: > > `FooBarBaz|zzz` > > It is true? That is what I'd intuitively expect. Here's one more thing to consider: the interaction of the different...