You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/routes/custom-formatting/+page.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,10 @@ category: Recipes
5
5
6
6
You can control how the text is displayed for some views, using special `format` functions. Each customizable view has its own parameters, but the expected return type is the same: an array of `{part: string, hl?: string, separator?: string}`. The `part` is the "content" itself, `hl` is one of `nvim-dap-view`'s [highlight groups](./highlight-groups) (without the `NvimDapView` prefix) and the separator can be used to customize the divider between the current part and the next one.
7
7
8
+
The separator must be a single character. A pipe (`|`) is used if not specified.
9
+
10
+
Additionally, both `threads` and `breakpoints` support a flag for aligning their columns.
11
+
8
12
## Threads
9
13
10
14
You can manipulate the frame _name_ (usually the function name), its line number and path.
0 commit comments