Mateen Ulhaq

Results 164 comments of Mateen Ulhaq

There's no real way to fix this without making *some* group of people unhappy. ¯\\\_(ツ)\_/¯

Check out https://github.com/thaerkh/vim-indentguides.

A very rough sketch is below. Some of the keystrokes are copied from `git add -p` (e.g. `[A]`, `[D]`) to reduce the learning curve. ``` Preview: Once upon a midknight...

Personally, I needed it to remove all files directory which did not fit a given criteria. For instance, deleting all files not starting with the prefix "keep": ```bash fd '^(?!keep)'...

One lighter alternative to a full-fledged language server is **[treesitter](https://github.com/tree-sitter/tree-sitter)**. The main purpose of treesitter is "incremental parsing" -- though the "incremental" bit isn't necessary for delta. I don't know...

Duplicate of https://github.com/honestbleeps/Reddit-Enhancement-Suite/issues/5223. (Clearer title.)

I've noticed that imported symbols in non-empty `__init.py__` files don't seem to be detected. ```python3 """ ./ src/ __init__.py foo.py main.py """ # src/foo.py def bar(x): pass # src/__init__.py from...

My bad. `__init__.py` should have said `from src.foo import bar` or `from .foo import bar`. What I posted is not valid python. Please disregard.

Updated with minimal, complete, verifiable example.

Is there a way to repeat the `select_next_item` action `$popup_height` number of times? (Just like nvim's default completion popup.) --- EDIT: Temporary workaround: ```lua mapping = { [""] = function(fallback)...