aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2023-03-18 19:51:06 +0900
committernsfisis <nsfisis@gmail.com>2023-03-18 19:51:06 +0900
commit7f15e0b8277ac8b101b4f71ce57c1c5442927141 (patch)
tree31d54a18ede023adeb23a984c907860d667288bd /public/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html
parent032dc3c5e6d0ef84a9f4ea6be10e19b7f43c53b8 (diff)
downloadblog.nsfisis.dev-7f15e0b8277ac8b101b4f71ce57c1c5442927141.tar.gz
blog.nsfisis.dev-7f15e0b8277ac8b101b4f71ce57c1c5442927141.tar.zst
blog.nsfisis.dev-7f15e0b8277ac8b101b4f71ce57c1c5442927141.zip
fix(nuldoc): fix whitespaces being trimmed
Diffstat (limited to 'public/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html')
-rw-r--r--public/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html98
1 files changed, 49 insertions, 49 deletions
diff --git a/public/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html b/public/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html
index a878638..3c6342b 100644
--- a/public/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html
+++ b/public/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html
@@ -54,163 +54,163 @@
</ol>
</section>
<p>
- この記事は Qiita から移植してきたものです。 元 URL:<a href="https://qiita.com/nsfisis/items/79ab4db8564032de0b25">https://qiita.com/nsfisis/items/79ab4db8564032de0b25</a>
+ この記事は Qiita から移植してきたものです。 元 URL: <a href="https://qiita.com/nsfisis/items/79ab4db8564032de0b25">https://qiita.com/nsfisis/items/79ab4db8564032de0b25</a>
</p>
-
+
<p>
<hr>
</hr>
</p>
-
+
<section id="section--_tl_dr">
- <h2><a href="#section--_tl_dr">TL; DR</a></h2>
+ <h2><a href="#section--_tl_dr">TL; DR</a></h2>
<p>
違いはない。ただのエイリアス。
</p>
</section>
-
+
<section id="section--_調査記録">
- <h2><a href="#section--_調査記録">調査記録</a></h2>
+ <h2><a href="#section--_調査記録">調査記録</a></h2>
<p>
- Vim の autocmd events には似通った名前のものがいくつかある。大抵は<code>:help</code>に説明があるが、この記事のタイトルにある2つを含めた以下のイベントには、その違いについて説明がない。
+ Vim の autocmd events には似通った名前のものがいくつかある。大抵は <code>:help</code> に説明があるが、この記事のタイトルにある2つを含めた以下のイベントには、その違いについて説明がない。
</p>
-
+
<ul>
<li>
<code>BufRead</code>/<code>BufReadPost</code>
</li>
-
+
<li>
<code>BufWrite</code>/<code>BufWritePre</code>
</li>
-
+
<li>
<code>BufAdd</code>/<code>BufCreate</code>
</li>
</ul>
-
+
<p>
- このうち、<code>BufAdd</code>/<code>BufCreate</code>に関しては、<code>:help BufCreate</code>に
+ このうち、<code>BufAdd</code>/<code>BufCreate</code> に関しては、<code>:help BufCreate</code> に
</p>
-
+
<blockquote>
<p>
The BufCreate event is for historic reasons.
</p>
</blockquote>
-
+
<p>
- とあり、おそらくは<code>BufAdd</code>のエイリアスであろうということがわかる。他の2組も同様ではないかと予想されるが、確認のため vim と neovim のソースコードを調査した。
+ とあり、おそらくは <code>BufAdd</code> のエイリアスであろうということがわかる。他の2組も同様ではないかと予想されるが、確認のため vim と neovim のソースコードを調査した。
</p>
-
+
<blockquote>
<p>
- ソースコードへのリンク<a href="https://github.com/vim/vim/tree/8e6be34338f13a6a625f19bcef82019c9adc65f2">vim (調査時点での master branch)</a><a href="https://github.com/neovim/neovim/tree/71d4f5851f068eeb432af34850dddda8cc1c71e3">neovim (上に同じ)</a>
+ ソースコードへのリンク <a href="https://github.com/vim/vim/tree/8e6be34338f13a6a625f19bcef82019c9adc65f2">vim (調査時点での master branch)</a> <a href="https://github.com/neovim/neovim/tree/71d4f5851f068eeb432af34850dddda8cc1c71e3">neovim (上に同じ)</a>
</p>
</blockquote>
-
+
<section id="section--_vim_のソースコード">
- <h3><a href="#section--_vim_のソースコード">vim のソースコード</a></h3>
+ <h3><a href="#section--_vim_のソースコード">vim のソースコード</a></h3>
<p>
以下は、autocmd events の名前と内部で使われている整数値とのマッピングを定義している箇所である。見ての通り、上でエイリアスではないかと述べた3組には、それぞれ同じ内部値が使われている。
</p>
-
+
<p>
<a href="https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/autocmd.c#L85-L86">https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/autocmd.c#L85-L86</a>
</p>
-
+
<pre class="highlight" language="c" linenumbering="unnumbered"><code class="highlight"> {<span class="hljs-string">&quot;BufAdd&quot;</span>, EVENT_BUFADD},
{<span class="hljs-string">&quot;BufCreate&quot;</span>, EVENT_BUFADD},</code></pre>
-
+
<p>
<a href="https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/autocmd.c#L95-L97">https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/autocmd.c#L95-L97</a>
</p>
-
+
<pre class="highlight" language="c" linenumbering="unnumbered"><code class="highlight"> {<span class="hljs-string">&quot;BufRead&quot;</span>, EVENT_BUFREADPOST},
{<span class="hljs-string">&quot;BufReadCmd&quot;</span>, EVENT_BUFREADCMD},
{<span class="hljs-string">&quot;BufReadPost&quot;</span>, EVENT_BUFREADPOST},</code></pre>
-
+
<p>
<a href="https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/autocmd.c#L103-L105">https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/autocmd.c#L103-L105</a>
</p>
-
+
<pre class="highlight" language="c" linenumbering="unnumbered"><code class="highlight"> {<span class="hljs-string">&quot;BufWrite&quot;</span>, EVENT_BUFWRITEPRE},
{<span class="hljs-string">&quot;BufWritePost&quot;</span>, EVENT_BUFWRITEPOST},
{<span class="hljs-string">&quot;BufWritePre&quot;</span>, EVENT_BUFWRITEPRE},</code></pre>
</section>
-
+
<section id="section--_neovim_のソースコード">
- <h3><a href="#section--_neovim_のソースコード">neovim のソースコード</a></h3>
+ <h3><a href="#section--_neovim_のソースコード">neovim のソースコード</a></h3>
<p>
- neovim の場合でも同様のマッピングが定義されているが、こちらの場合は Lua で書かれている。以下にある通り、はっきり<code>aliases</code>と書かれている。
+ neovim の場合でも同様のマッピングが定義されているが、こちらの場合は Lua で書かれている。以下にある通り、はっきり <code>aliases</code> と書かれている。
</p>
-
+
<p>
<a href="https://github.com/neovim/neovim/blob/71d4f5851f068eeb432af34850dddda8cc1c71e3/src/nvim/auevents.lua#L119-L124">https://github.com/neovim/neovim/blob/71d4f5851f068eeb432af34850dddda8cc1c71e3/src/nvim/auevents.lua#L119-L124</a>
</p>
-
+
<pre class="highlight" language="lua" linenumbering="unnumbered"><code class="highlight"> aliases = {
BufCreate = <span class="hljs-string">&#x27;BufAdd&#x27;</span>,
BufRead = <span class="hljs-string">&#x27;BufReadPost&#x27;</span>,
BufWrite = <span class="hljs-string">&#x27;BufWritePre&#x27;</span>,
FileEncoding = <span class="hljs-string">&#x27;EncodingChanged&#x27;</span>,
},</code></pre>
-
+
<p>
- ところで、上では取り上げなかった<code>FileEncoding</code>だが、これは<code>:help FileEncoding</code>にしっかりと書いてある。
+ ところで、上では取り上げなかった <code>FileEncoding</code> だが、これは <code>:help FileEncoding</code> にしっかりと書いてある。
</p>
-
+
<pre class="highlight monospaced"><code> *FileEncoding*
FileEncoding Obsolete. It still works and is equivalent
to |EncodingChanged|.</code></pre>
</section>
-
+
<section id="section--_まとめ">
- <h3><a href="#section--_まとめ">まとめ</a></h3>
+ <h3><a href="#section--_まとめ">まとめ</a></h3>
<p>
記事タイトルについて言えば、どちらも変わらないので好きな方を使えばよい。あえて言えば、次のようになるだろう。
</p>
-
+
<ul>
<li>
- <code>BufAdd</code>/<code>BufCreate</code>
+ <code>BufAdd</code>/<code>BufCreate</code>
<ul>
<li>
- →<code>BufCreate</code>は歴史的な理由により (&quot;for historic reasons&quot;) 存在しているため、新しい方 (<code>BufAdd</code>) を使う
+ → <code>BufCreate</code> は歴史的な理由により (&quot;for historic reasons&quot;) 存在しているため、新しい方 (<code>BufAdd</code>) を使う
</li>
</ul>
</li>
-
+
<li>
- <code>BufRead</code>/<code>BufReadPost</code>
+ <code>BufRead</code>/<code>BufReadPost</code>
<ul>
<li>
- →<code>BufReadPre</code>との対称性のため、あるいは<code>BufWritePost</code>との対称性のため<code>BufReadPost</code>を使う
+ → <code>BufReadPre</code> との対称性のため、あるいは <code>BufWritePost</code> との対称性のため <code>BufReadPost</code> を使う
</li>
</ul>
</li>
-
+
<li>
- <code>BufWrite</code>/<code>BufWritePre</code>
+ <code>BufWrite</code>/<code>BufWritePre</code>
<ul>
<li>
- →<code>BufWritePost</code>との対称性のため、あるいは<code>BufReadPre</code>との対称性のため<code>BufWritePre</code>を使う
+ → <code>BufWritePost</code> との対称性のため、あるいは <code>BufReadPre</code> との対称性のため <code>BufWritePre</code> を使う
</li>
</ul>
</li>
-
+
<li>
- <code>FileEncoding</code>/<code>EncodingChanged</code>
+ <code>FileEncoding</code>/<code>EncodingChanged</code>
<ul>
<li>
- →<code>FileEncoding</code>は<code>`Obsolete&apos;&apos; と明言されているので、`EncodingChanged</code>を使う
+ → <code>FileEncoding</code> は <code>`Obsolete&apos;&apos; と明言されているので、`EncodingChanged</code> を使う
</li>
</ul>
</li>
</ul>
-
+
<p>
- ところでこの調査で知ったのだが、<code>BufRead</code>と<code>BufWrite</code>は上にある通り発火するタイミングが「後」と「前」で対称性がない。可能なら<code>Pre</code>/<code>Post</code>付きのものを使った方が分かりやすいだろう。
+ ところでこの調査で知ったのだが、<code>BufRead</code> と <code>BufWrite</code> は上にある通り発火するタイミングが「後」と「前」で対称性がない。可能なら <code>Pre</code>/<code>Post</code> 付きのものを使った方が分かりやすいだろう。
</p>
</section>
</section>