Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@elastic/ctags-langserver

Package Overview
Dependencies
Maintainers
62
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@elastic/ctags-langserver - npm Package Compare versions

Comparing version 0.1.5 to 0.1.7

2

lib/lsp-connection.js

@@ -20,3 +20,3 @@ "use strict";

if (options.socketPort !== undefined) {
const [reader, writer] = vscode_languageserver_protocol_1.createServerSocketTransport(this.port);
const [reader, writer] = vscode_languageserver_protocol_1.createServerSocketTransport(options.socketPort);
connection = lsp.createConnection(reader, writer);

@@ -23,0 +23,0 @@ }

@@ -32,2 +32,29 @@ "use strict";

const utils_1 = require("./utils");
const CTAGS_SUPPORT_LANGS = [
'C',
'C++',
'Clojure',
'C#',
'CSS',
'Go',
'HTML',
'Iniconf',
'Lua',
'JSON',
'ObjectiveC',
'Pascal',
'Perl',
'PHP',
'Python',
'R',
'Ruby',
'Rust',
'Scheme',
'Sh',
'SQL',
'Tcl',
'TypeScript',
'Java',
'JavaScript',
];
class LspServer {

@@ -322,3 +349,3 @@ constructor(options) {

try {
child_process_1.execSync(`${ctagsPath} --fields=-anf+iKnS -R .`, { cwd: rootPath, stdio: 'pipe' });
child_process_1.execSync(`${ctagsPath} --fields=-anf+iKnS --languages=${CTAGS_SUPPORT_LANGS.join(',')} -R .`, { cwd: rootPath, stdio: 'pipe' });
}

@@ -325,0 +352,0 @@ catch (err) {

{
"name": "@elastic/ctags-langserver",
"version": "0.1.5",
"version": "0.1.7",
"description": "An all-languages language server built on top of ctags",

@@ -5,0 +5,0 @@ "author": "Elastic",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc