Help 檔案中,超連結的寫法是用兩個星號圍起來,例如:

*starting.txt*  For Vim version 7.3.  Last change: 2010 Sep 18
                                        *bold* *underline* *undercurl*
                                        *inverse* *italic* *standout*
term={attr-list}                        *attr-list* *highlight-term* *E418*
                                                        *right-justify*
PREVENTING LOADING                                              *netrw-noload*

如果是寫在行尾的,我就每次看了都想把它靠右對齊……

目前應該是沒這規範,看過的 help 也沒特別處理;總之我寫了一個 function 來做這件事;
只支援單行、只處理最後一個 *entry*,超過 'textwidth' 的也不管:

Right justify *keyword* in Vim help files. — Gist


使用前('textwidth' 為 78,游標在 CONFIGURATION 那一行)

==============================================================================
CONFIGURATION                         *gsession-configuration*

使用後

==============================================================================
CONFIGURATION                                         *gsession-configuration*

可以在 filetype 為 help 時定義這個 key mapping

nnoremap <silent> <buffer> <LocalLeader>= :call HelpHyperTextEntryJustify()<Enter>