1
0
mirror of https://github.com/gryf/tagbar.git synced 2025-12-17 11:30:28 +01:00

Check for tilde in cpp destructor (#732)

This commit is contained in:
raven42
2021-01-06 06:24:14 -06:00
committed by GitHub
parent 5f912e6ad0
commit 7cf83a4330

View File

@@ -152,7 +152,8 @@ function! s:getDataType() abort dict
endif
let line = getbufline(bufnr, self.fields.line)[0]
let data_type = substitute(line, '\s*' . self.name . '.*', '', '')
let tmp_name = substitute(self.name, "\\~", '', 'g')
let data_type = substitute(line, '\s*' . tmp_name . '.*', '', '')
" Strip off the path if we have one along with any spaces prior to the
" path