indentLine icon indicating copy to clipboard operation
indentLine copied to clipboard

Documentation request

Open Mixer9 opened this issue 7 years ago • 3 comments

in your README.md file the line that states "You can also use one of ¦, ┆, │, ⎸, or ▏ to display more beautiful lines. However, these characters will only work with files whose encoding is UTF-8."

Can you please put the UTF-8 codes to create those characters, I have looked online and cannot find the one in the 3rd position from the left, the taller | (pipe) symbol.

Mixer9 avatar Apr 12 '18 20:04 Mixer9

Those appear to be (in order):

  1. 166
  2. 9478
  3. 9474
  4. 9144
  5. 9615

I found those with the following Python 3 code:

for a in "¦┆│⎸▏":
    print(ord(a))

ekaj2 avatar Nov 20 '18 20:11 ekaj2

I can't get these characters to add without the '\' slashes. screen shot 2019-03-01 at 12 06 06

How do i get these to go away? in my .vimrc file i currently have this line: set list lcs=tab:\│\ Where the charafter is the taller pipe character, 9474.

atticusmatticus avatar Mar 01 '19 19:03 atticusmatticus

I can't get these characters to add without the '' slashes. screen shot 2019-03-01 at 12 06 06

How do i get these to go away? in my .vimrc file i currently have this line: set list lcs=tab:\│\ Where the charafter is the taller pipe character, 9474.

indentLine

This plugin is used for displaying thin vertical lines at each indentation level for code indented with spaces. For code indented with tabs I think there is no need to support it, because you can use :set list lcs=tab:\|\ (here is a space).

Yggdroot avatar Mar 02 '19 01:03 Yggdroot