Mateen Ulhaq
Mateen Ulhaq
More customization for the format would be nice. Personally, I want titles lowercase with underscores: ``` This is title -> this_is_title.md ``` This is good since Linux paths and commands...
The default [`todo.cfg`](https://github.com/todotxt/todo.txt-cli/blob/master/todo.cfg) contains: ```bash export GREEN='\\033[0;32m' export PRI_B=$GREEN ``` However, for consistency with the other priorities (which are bold), it should actually be: ```bash export GREEN_BOLD='\\033[1;32m' export PRI_B=$GREEN_BOLD ```
Typing `/` to search for text would be great. `` then `n` to cycle through matches. For instance: /There's a starman n n finds 3rd occurrence of "There's a starman"....
**Desired** 78-character wrapping (used by the popular [choosealicense.com](https://choosealicense.com/licenses/mit/)): ``` MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation...
**Desired** ``` MIT License Copyright (c) 2038 Zaphod Beeblebrox ... ``` **Actual** ``` MIT License Copyright (c) 2038 Zaphod Beeblebrox ... ``` **Rationale** "Copyright" is on its own line, as...
From README: > We have released MMAction, a full-fledged action understanding toolbox based on PyTorch. It includes implementation for TSN as well as other STOA frameworks for various tasks. We...
To view the output in a pager, one can do: mdv sample.md | less -r However, this does not support *automatic refreshing*. --- Request: I would like monitoring while paging:...
Sometimes, I want just want to `` through a document without losing the highlights. It would be useful to implement a command or option for toggling vim-cool on/off. ```vim :VimCoolToggle...
Colors for treesitter highlighting coming in Neovim 0.5. Though if the changes are non-trivial, perhaps it would make sense to make a new plugin "nvim-treesitter-quantum" instead.
## Reproducible environment Copy and paste this into your terminal: ```bash mkdir -p ~/.local/share/nvim/site/pack/bundle cd ~/.local/share/nvim/site/pack/bundle git clone https://github.com/neovim/nvim-lspconfig git clone https://github.com/ms-jpq/coq_nvim echo ' let $PLUGIN_DIRECTORY = "~/.local/share/nvim/site/pack/bundle" set runtimepath^=$PLUGIN_DIRECTORY/nvim-lspconfig...