Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to the Power Users community on Codidact!

Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.

Post History

80%
+6 −0
Q&A How to indent list items in Vim

Problem How do I indent a list item in Vim the following way? Ideally I want this to happen automatically upon wrap, but will settle for something like ESC TAB doing the trick. Have This is a ...

1 answer  ·  posted 1y ago by mcp‭  ·  last activity 9mo ago by tssm‭

Question vim indent
#3: Nominated for promotion by user avatar Monica Cellio‭ · 2023-03-21T23:21:29Z (about 1 year ago)
#2: Post edited by user avatar mcp‭ · 2023-02-26T23:31:09Z (about 1 year ago)
Make all headers level 1
  • # Problem
  • How do I indent a list item in Vim the following way? Ideally I want
  • this to happen automatically upon wrap, but will settle for something
  • like `ESC TAB` doing the trick.
  • ## Have
  • ```txt
  • This is a list:
  • 1. This is a list item.
  • 2. This is a long list item that I am wrapping at 72 characters which
  • contains nonsense to hit that limit.
  • 3. This is a list item that emphasizes the effect.
  • ```
  • ## Want
  • ```txt
  • This is a list:
  • 1. This is a list item.
  • 2. This is a long list item that I am wrapping at 72 characters
  • which contains nonsense to hit that limit.
  • 3. This is a list item that emphasizes the effect.
  • ```
  • # Tried
  • I have the following in my `.vimrc`:
  • ```vimrc
  • set tw=72
  • set autoindent
  • set smartindent
  • ```
  • `set autoindent` will correctly indent subsequent lines if I manually
  • indent the first wrapped line. I have not observed a difference with
  • `set smartindent`.
  • # Notes
  • I am using Vim and spacemacs, but only need an answer for Vim.
  • In spacemacs I can `TAB` the first line to the right place in
  • `text-mode`; in `markdown-mode`, the line is wrapped (auto-filled)
  • correctly without action.
  • # Problem
  • How do I indent a list item in Vim the following way? Ideally I want
  • this to happen automatically upon wrap, but will settle for something
  • like `ESC TAB` doing the trick.
  • # Have
  • ```txt
  • This is a list:
  • 1. This is a list item.
  • 2. This is a long list item that I am wrapping at 72 characters which
  • contains nonsense to hit that limit.
  • 3. This is a list item that emphasizes the effect.
  • ```
  • # Want
  • ```txt
  • This is a list:
  • 1. This is a list item.
  • 2. This is a long list item that I am wrapping at 72 characters
  • which contains nonsense to hit that limit.
  • 3. This is a list item that emphasizes the effect.
  • ```
  • # Tried
  • I have the following in my `.vimrc`:
  • ```vimrc
  • set tw=72
  • set autoindent
  • set smartindent
  • ```
  • `set autoindent` will correctly indent subsequent lines if I manually
  • indent the first wrapped line. I have not observed a difference with
  • `set smartindent`.
  • # Notes
  • I am using Vim and spacemacs, but only need an answer for Vim.
  • In spacemacs I can `TAB` the first line to the right place in
  • `text-mode`; in `markdown-mode`, the line is wrapped (auto-filled)
  • correctly without action.
#1: Initial revision by user avatar mcp‭ · 2023-02-26T23:29:43Z (about 1 year ago)
How to indent list items in Vim
# Problem
How do I indent a list item in Vim the following way? Ideally I want
this to happen automatically upon wrap, but will settle for something
like `ESC TAB` doing the trick.

## Have
```txt
This is a list:
1. This is a list item.
2. This is a long list item that I am wrapping at 72 characters which
contains nonsense to hit that limit.
3. This is a list item that emphasizes the effect.
```

## Want
```txt
This is a list:
1. This is a list item.
2. This is a long list item that I am wrapping at 72 characters
   which contains nonsense to hit that limit.
3. This is a list item that emphasizes the effect.
```

# Tried
I have the following in my `.vimrc`:
```vimrc
set tw=72

set autoindent
set smartindent
```

`set autoindent` will correctly indent subsequent lines if I manually
indent the first wrapped line. I have not observed a difference with
`set smartindent`.

# Notes
I am using Vim and spacemacs, but only need an answer for Vim.

In spacemacs I can `TAB` the first line to the right place in
`text-mode`; in `markdown-mode`, the line is wrapped (auto-filled)
correctly without action.