Chris Penner
Chris Penner
cc @jmatsushita Allow Buffers to have types by introducing a new event type: ```haskell data BufTypeChanged bufType = BufTypeChanged ``` `BufTypeChanged ReadOnlyBuffer` for read-only buffers in rasa-ext-files (rasa -R example.txt)...
Dispatch `FileOpened FilePath SomeOtherUsefulStuff` in rasa-ext-files. cc @jmatsushita
cc @jmatsushita >In order to introduce widgets for autocomplete, file browsing and so on, there seems to be a need to extend the widget functionality to render them elsewhere than...
There's a start for this [here](https://github.com/ChrisPenner/rasa/tree/master/rasa-ext-cmd). The idea here is to have a parallel to Vim's `:` cmd bar or emacs' `M-x`; Rather than each extension needing to figure out...
Both Vim and Emacs have extensive help functionality built into the editor; this has been a great asset for anyone learning the systems and for discoverability of features. [Kakoune](https://github.com/mawww/kakoune) has...
We should definitely add benchmarks for important functionality; this will help us improve performance over time and be sensitive to performance regressions. Some help on this would be great; even...
How can we standardize a useful representation of syntax highlighting usable across filetypes?
Hi all 👋🏼 I've been setting up auth for my server using `servant-auth` and `servant-auth-server` I've run into a few different issues, first for a bit of context: * We're...
Referenced in https://github.com/ChrisPenner/lens-regex-pcre/issues/10 with benchmarks here: https://github.com/jamesdbrock/replace-benchmark#results We can see that pcre-heavy is having a bit of trouble with substitutions with LOTS of matches, I did a quick profile on...
Figured I'd drop a note here to ask your opinion before I go implement anything; for context: My goal is to rig up some fzf vim commands to very quickly...