summaryrefslogtreecommitdiff
path: root/lua/lsp-wrapper.lua
blob: 0771f1df4eb037715f20c6c4eaf8fede2f8d655e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
local lsp_wrapper = {}

-- buf

function lsp_wrapper.add_to_workspace_folder()
    vim.lsp.buf.add_workspace_folder()
end

function lsp_wrapper.clear_references()
    vim.lsp.buf.clear_references()
end

function lsp_wrapper.code_action()
    vim.lsp.buf.code_action()
end

function lsp_wrapper.declaration()
    vim.lsp.buf.declaration()
    vim.lsp.buf.clear_references()
end

function lsp_wrapper.definition()
    vim.lsp.buf.definition()
    vim.lsp.buf.clear_references()
end

function lsp_wrapper.document_highlight()
    vim.lsp.buf.document_highlight()
end

function lsp_wrapper.document_symbol()
    vim.lsp.buf.document_symbol()
end

function lsp_wrapper.formatting()
    vim.lsp.buf.formatting()
end

function lsp_wrapper.formatting_sync()
    vim.lsp.buf.formatting_sync()
end

function lsp_wrapper.hover()
    vim.lsp.buf.hover()
end

function lsp_wrapper.implementation()
    vim.lsp.buf.implementation()
end

function lsp_wrapper.incoming_calls()
    vim.lsp.buf.incoming_calls()
end

function lsp_wrapper.list_workspace_folders()
    vim.lsp.buf.list_workspace_folders()
end

function lsp_wrapper.outgoing_calls()
    vim.lsp.buf.outgoing_calls()
end

function lsp_wrapper.range_code_action()
    vim.lsp.buf.range_code_action()
end

function lsp_wrapper.range_formatting()
    vim.lsp.buf.range_formatting()
end

function lsp_wrapper.references()
    vim.lsp.buf.references()
    vim.lsp.buf.clear_references()
end

function lsp_wrapper.remove_workspace_folder()
    vim.lsp.buf.remove_workspace_folder()
end

function lsp_wrapper.rename()
    vim.lsp.buf.rename()
end

function lsp_wrapper.signature_help()
    vim.lsp.buf.signature_help()
end

function lsp_wrapper.type_definition()
    vim.lsp.buf.type_definition()
end

function lsp_wrapper.workspace_symbol()
    vim.lsp.buf.workspace_symbol()
end

-- diagnostic

function lsp_wrapper.get_all()
    vim.lsp.diagnostic.get_all()
end

function lsp_wrapper.get_next()
    vim.lsp.diagnostic.get_next()
end

function lsp_wrapper.get_prev()
    vim.lsp.diagnostic.get_prev()
end

function lsp_wrapper.goto_next()
    vim.lsp.diagnostic.goto_next()
end

function lsp_wrapper.goto_prev()
    vim.lsp.diagnostic.goto_prev()
end

function lsp_wrapper.show_line_diagnostics()
    vim.lsp.diagnostic.show_line_diagnostics()
end

-- misc

-- :lua print(vim.inspect(vim.lsp.buf_get_clients()))

-- autoformat
-- autocmd BufWritePre *.rs lua vim.lsp.buf.formatting_sync(nil, 1000)

return lsp_wrapper

-- You can see more about the differences in types here:
-- https://microsoft.github.io/language-server-protocol/specification#textDocument_documentHighlight

--                                                            *hl-LspReferenceText*
-- LspReferenceText          used for highlighting "text" references
--                                                            *hl-LspReferenceRead*
-- LspReferenceRead          used for highlighting "read" references
--                                                           *hl-LspReferenceWrite*
-- LspReferenceWrite         used for highlighting "write" references

--                                                    *lsp-highlight-diagnostics*
-- All highlights defined for diagnostics begin with `LspDiagnostics` followed by
-- the type of highlight (e.g., `Sign`, `Underline`, etc.) and then the Severity
-- of the highlight (e.g. `Error`, `Warning`, etc.)

-- Sign, underline and virtual text highlights (by default) are linked to their
-- corresponding LspDiagnosticsDefault highlight.

-- For example, the default highlighting for |hl-LspDiagnosticsSignError| is
-- linked to |hl-LspDiagnosticsDefaultError|. To change the default (and
-- therefore the linked highlights), use the |:highlight| command: >

--     highlight LspDiagnosticsDefaultError guifg="BrightRed"
-- <

--                                                *hl-LspDiagnosticsDefaultError*
-- LspDiagnosticsDefaultError
--   Used as the base highlight group.
--   Other LspDiagnostic highlights link to this by default (except Underline)

--                                              *hl-LspDiagnosticsDefaultWarning*
-- LspDiagnosticsDefaultWarning
--   Used as the base highlight group.
--   Other LspDiagnostic highlights link to this by default (except Underline)

--                                          *hl-LspDiagnosticsDefaultInformation*
-- LspDiagnosticsDefaultInformation
--   Used as the base highlight group.
--   Other LspDiagnostic highlights link to this by default (except Underline)

--                                                 *hl-LspDiagnosticsDefaultHint*
-- LspDiagnosticsDefaultHint
--   Used as the base highlight group.
--   Other LspDiagnostic highlights link to this by default (except Underline)

--                                            *hl-LspDiagnosticsVirtualTextError*
-- LspDiagnosticsVirtualTextError
--   Used for "Error" diagnostic virtual text.
--   See |vim.lsp.diagnostic.set_virtual_text()|

--                                          *hl-LspDiagnosticsVirtualTextWarning*
-- LspDiagnosticsVirtualTextWarning
--   Used for "Warning" diagnostic virtual text.
--   See |vim.lsp.diagnostic.set_virtual_text()|

--                                      *hl-LspDiagnosticsVirtualTextInformation*
-- LspDiagnosticsVirtualTextInformation
--   Used for "Information" diagnostic virtual text.
--   See |vim.lsp.diagnostic.set_virtual_text()|

--                                             *hl-LspDiagnosticsVirtualTextHint*
-- LspDiagnosticsVirtualTextHint
--   Used for "Hint" diagnostic virtual text.
--   See |vim.lsp.diagnostic.set_virtual_text()|

--                                              *hl-LspDiagnosticsUnderlineError*
-- LspDiagnosticsUnderlineError
--   Used to underline "Error" diagnostics.
--   See |vim.lsp.diagnostic.set_underline()|

--                                            *hl-LspDiagnosticsUnderlineWarning*
-- LspDiagnosticsUnderlineWarning
--   Used to underline "Warning" diagnostics.
--   See |vim.lsp.diagnostic.set_underline()|

--                                        *hl-LspDiagnosticsUnderlineInformation*
-- LspDiagnosticsUnderlineInformation
--   Used to underline "Information" diagnostics.
--   See |vim.lsp.diagnostic.set_underline()|

--                                               *hl-LspDiagnosticsUnderlineHint*
-- LspDiagnosticsUnderlineHint
--   Used to underline "Hint" diagnostics.
--   See |vim.lsp.diagnostic.set_underline()|

--                                               *hl-LspDiagnosticsFloatingError*
-- LspDiagnosticsFloatingError
--   Used to color "Error" diagnostic messages in diagnostics float.
--   See |vim.lsp.diagnostic.show_line_diagnostics()|

--                                             *hl-LspDiagnosticsFloatingWarning*
-- LspDiagnosticsFloatingWarning
--   Used to color "Warning" diagnostic messages in diagnostics float.
--   See |vim.lsp.diagnostic.show_line_diagnostics()|

--                                         *hl-LspDiagnosticsFloatingInformation*
-- LspDiagnosticsFloatingInformation
--   Used to color "Information" diagnostic messages in diagnostics float.
--   See |vim.lsp.diagnostic.show_line_diagnostics()|

--                                                *hl-LspDiagnosticsFloatingHint*
-- LspDiagnosticsFloatingHint
--   Used to color "Hint" diagnostic messages in diagnostics float.
--   See |vim.lsp.diagnostic.show_line_diagnostics()|

--                                                   *hl-LspDiagnosticsSignError*
-- LspDiagnosticsSignError
--   Used for "Error" signs in sign column.
--   See |vim.lsp.diagnostic.set_signs()|

--                                                 *hl-LspDiagnosticsSignWarning*
-- LspDiagnosticsSignWarning
--   Used for "Warning" signs in sign column.
--   See |vim.lsp.diagnostic.set_signs()|

--                                             *hl-LspDiagnosticsSignInformation*
-- LspDiagnosticsSignInformation
--   Used for "Information" signs in sign column.
--   See |vim.lsp.diagnostic.set_signs()|

--                                                    *hl-LspDiagnosticsSignHint*
-- LspDiagnosticsSignHint
--   Used for "Hint" signs in sign column.
--   See |vim.lsp.diagnostic.set_signs()|