Skip to content

Commit

Permalink
fixup! feat(nextls): to-pipe and from-pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
mhanberg committed Mar 2, 2024
1 parent 7840ce6 commit 18c03b5
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
3 changes: 0 additions & 3 deletions src/commands/from-pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ import {
export const run = async (client: LanguageClient) => {
const position = vscode.window.activeTextEditor?.selection.start;

console.log(JSON.stringify(position));

client.sendRequest(ExecuteCommandRequest.type, {
command: "from-pipe",
arguments: [
Expand All @@ -25,7 +23,6 @@ function registerFromPipeCommand(
client: LanguageClient,
context: vscode.ExtensionContext
) {
console.log("what is happening");
const fromPipeCommand = "elixir-tools.fromPipe";
const fromPipe = async () => run(client);
context.subscriptions.push(
Expand Down
3 changes: 0 additions & 3 deletions src/commands/to-pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ import {
export const run = async (client: LanguageClient) => {
const position = vscode.window.activeTextEditor?.selection.start;

console.log(JSON.stringify(position));

client.sendRequest(ExecuteCommandRequest.type, {
command: "to-pipe",
arguments: [
Expand All @@ -25,7 +23,6 @@ function registerToPipeCommand(
client: LanguageClient,
context: vscode.ExtensionContext
) {
console.log("what is happening");
const toPipeCommand = "elixir-tools.toPipe";
const toPipe = async () => run(client);
context.subscriptions.push(
Expand Down
1 change: 0 additions & 1 deletion src/commands/uninstall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ function registerUninstallCommand(
) {
const uninstallCommand = "elixir-tools.uninstall-nextls";

console.log("registering uninstall command");
const uninstall = async () =>
run(<string>config.get("installationDirectory"));

Expand Down

0 comments on commit 18c03b5

Please sign in to comment.