Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Titan VS Code Extension
Manage
Activity
Members
Labels
Plan
Issues
15
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
Eclipse Titan
Titan VS Code Extension
Merge requests
!26
File types fix (
titan.language-server#7
)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
File types fix (
titan.language-server#7
)
file-types
into
main
Overview
0
Commits
1
Changes
3
Merged
Adam Knapp
requested to merge
file-types
into
main
2 years ago
Overview
0
Commits
1
Changes
3
Expand
Signed-off-by: Adam Knapp
adam.knapp@ericsson.com
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
0d805ffc
1 commit,
2 years ago
3 files
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
src/window/WindowEventManager.ts
+
1
−
1
Options
@@ -32,7 +32,7 @@ const windowEventHandlers = {
sendRequestForDocumentComment
:
(
event
:
TextEditorSelectionChangeEvent
)
=>
{
cursorTimer
.
clearTimer
();
const
{
textEditor
,
selections
,
kind
}
=
event
;
const
supportedFileTypes
=
[
'
ttcn
'
,
'
ttcnpp
'
,
'
asn1
'
];
const
supportedFileTypes
=
[
'
asn
'
,
'
asn1
'
,
'
ttcn
'
,
'
ttcn3
'
,
'
ttcnpp
'
,
'
ttcnin
'
];
if
(
selections
.
length
>
1
||
!
supportedFileTypes
.
includes
(
textEditor
.
document
.
languageId
))
{
return
;}
const
cursorPosition
=
selections
[
0
].
active
;
const
requestParams
=
{
Loading