https://git.dlma.com/dotfiles.git/tree/dee4a8dae5116af70d511f80f7352add7badfb28Recent commits to dotfiles.git (dee4a8dae5116af70d511f80f7352add7badfb28)2024-12-03T00:17:59-08:00tag:gitlist.org,2012:commit/dee4a8dae5116af70d511f80f7352add7badfb28Add support for neovim 0.102024-12-03T00:17:59-08:00dblumedavid.blume@gmail.com
<pre>Neovim 0.10 removed support for the filetype methods. Now check
the version of neovim, and make compatible calls.
</pre>
tag:gitlist.org,2012:commit/ee2ebd786115880fdb2d57d2c747bd80f6dab490Support vim detection of local serial logs2024-12-02T11:29:08-08:00dblumedavid.blume@gmail.com
<pre>Support logs with the '!' and '*' columns, and that are missing
the channel ID. So support both:
11-19 15:36:59.959 12 [...] ...
and
11-19 15:36:59.959 !*[...] ...
11-19 15:36:59.959 [...] ...
</pre>
tag:gitlist.org,2012:commit/04a20c1ef1ba85c5ff34e559d84d847b1ff01dfdAdd rokulog detection of "publishing" channels2024-12-02T08:50:39-08:00dblumedavid.blume@gmail.com
<pre>Since we're detecting rokulog by format of the first line,
detect publishing channel IDs like "358_72dbe"
</pre>
tag:gitlist.org,2012:commit/3e22322d2513e34121d32b7949530088a4465ff2Detect rokulog files even when .txt extension exists2024-12-01T20:13:54-08:00dblumedavid.blume@gmail.com
<pre></pre>
tag:gitlist.org,2012:commit/5a819174355e1f2085df3d0a12ffbb2d069ce6c5Remove accidental vim commands from bash history2024-11-27T11:36:29-08:00dblumedblume@roku.com
<pre></pre>
tag:gitlist.org,2012:commit/89e0f39b227438b2eebd4c4e8f0f7fc6077acc5fCleanup: Remove file extension from setup.sh2024-11-20T16:39:36-08:00dblumedblume@roku.com
<pre></pre>
tag:gitlist.org,2012:commit/5517e1aa6ec0854113a1d223ff936df77b05ccb1Decided I usually wanted ruler, and no number column changes2024-11-14T16:11:24-08:00dblumedblume@roku.com
<pre>I'm mercurial. Got annoyed at turning on the ruler. Got annoyed
at seeing the numbers column change when I was switching windows.
</pre>
tag:gitlist.org,2012:commit/f26fde66eeb76bbe623e3b8d22a75066aa95a2e8Add vim plugin tabular2024-10-26T01:08:07-07:00dblumedavid.blume@gmail.com
<pre>See https://github.com/godlygeek/tabular
This common command will usually do what I need:
:Tab /|
</pre>
tag:gitlist.org,2012:commit/5a532911bf00ff0c556d8e6394c967c532f3b303Make "-" a non-breaking char only for markdown docs2024-10-17T15:14:48-07:00dblumedblume@roku.com
<pre>Turns out I want "-" to be breaking in code, like
objectptr->method(), but I want it to be non-breaking
in non-code where I use bug tracker IDs like JIRA-1234.
</pre>
tag:gitlist.org,2012:commit/5d3009bf0a495723a0261c93e1908f0117ddeed6Disable maps in cscope_maps2024-09-16T16:58:11-07:00dblumedavid.blume@gmail.com
<pre>Turns out cscope_maps by default remaps two shortcuts I use:
1. <leader>c , which I use for clipboard yank, is the default <prefix>
sequence for cscope_maps. (So you could quickly <leader>c,s to search for
the token under the cursor instead of :Cs find s <cword>.)
2. <C-]>, the :tag shortcut gets remapped to :Cstag, which was
determined to be worse. Tried with https://git.dlma.com/testcode.git,
searching for the following from main.cpp:
* test_cpp14: One hit, should just jump to it.
* f: Multiple local in main.cpp and then in main_helper.cpp too.
</pre>