Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Kate
Commits
2896fa76
Commit
2896fa76
authored
Jul 27, 2022
by
Alain Laporte
Browse files
bash_parser: reduce scope variable
parent
6b215bdd
Pipeline
#225902
passed with stage
in 7 minutes and 42 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
addons/symbolviewer/bash_parser.cpp
View file @
2896fa76
...
...
@@ -52,11 +52,9 @@ void KatePluginSymbolViewerView::parseBashSymbols(void)
}
if
(
m_func
->
isChecked
())
{
QString
funcName
;
match
=
function_regexp
.
match
(
currline
);
if
(
match
.
hasMatch
())
{
funcName
=
match
.
captured
(
2
);
QString
funcName
=
match
.
captured
(
2
);
funcName
.
append
(
QLatin1String
(
"()"
));
if
(
m_treeOn
->
isChecked
())
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment