File tree 12 files changed +21
-21
lines changed
12 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 1
1
** Please check if the PR fulfills these requirements**
2
2
3
- - [ ] The PR has no duplicates (please search among the [ Pull Requests] ( https://github.com/bcmi-labs /arduino-language-server/pulls )
3
+ - [ ] The PR has no duplicates (please search among the [ Pull Requests] ( https://github.com/arduino /arduino-language-server/pulls )
4
4
before creating one)
5
- - [ ] The PR follows [ our contributing guidelines] ( https://github.com/bcmi-labs /arduino-language-server#pull-requests )
5
+ - [ ] The PR follows [ our contributing guidelines] ( https://github.com/arduino /arduino-language-server#pull-requests )
6
6
- [ ] Tests for the changes have been added (for bug fixes / features)
7
7
8
8
* ** What kind of change does this PR introduce?**
Original file line number Diff line number Diff line change 1
- # same as https://github.com/bcmi-labs /arduino-editor/blob/master/Dockerfile
1
+ # same as https://github.com/arduino /arduino-editor/blob/master/Dockerfile
2
2
FROM gitpod/workspace-full
3
3
4
4
USER root
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ echo go build -o /workspace/arduino-editor/arduino-ide-extension/build/arduino-l
5
5
chmod +x /workspace/arduino-language-server/build.sh
6
6
7
7
cd /workspace
8
- git clone https://github.com/bcmi-labs /arduino-editor
8
+ git clone https://github.com/arduino /arduino-editor
9
9
cd arduino-editor
10
10
yarn
11
11
Original file line number Diff line number Diff line change 1
- module github.com/bcmi-labs /arduino-language-server
1
+ module github.com/arduino /arduino-language-server
2
2
3
3
go 1.12
4
4
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ import (
10
10
11
11
"github.com/arduino/arduino-cli/arduino/libraries"
12
12
"github.com/arduino/arduino-cli/executils"
13
+ "github.com/arduino/arduino-language-server/lsp"
14
+ "github.com/arduino/arduino-language-server/streams"
13
15
"github.com/arduino/go-paths-helper"
14
- "github.com/bcmi-labs/arduino-language-server/lsp"
15
- "github.com/bcmi-labs/arduino-language-server/streams"
16
16
"github.com/pkg/errors"
17
17
)
18
18
Original file line number Diff line number Diff line change @@ -18,11 +18,11 @@ import (
18
18
19
19
"github.com/arduino/arduino-cli/arduino/builder"
20
20
"github.com/arduino/arduino-cli/executils"
21
+ "github.com/arduino/arduino-language-server/handler/sourcemapper"
22
+ "github.com/arduino/arduino-language-server/handler/textutils"
23
+ "github.com/arduino/arduino-language-server/lsp"
24
+ "github.com/arduino/arduino-language-server/streams"
21
25
"github.com/arduino/go-paths-helper"
22
- "github.com/bcmi-labs/arduino-language-server/handler/sourcemapper"
23
- "github.com/bcmi-labs/arduino-language-server/handler/textutils"
24
- "github.com/bcmi-labs/arduino-language-server/lsp"
25
- "github.com/bcmi-labs/arduino-language-server/streams"
26
26
"github.com/fatih/color"
27
27
"github.com/pkg/errors"
28
28
"github.com/sourcegraph/jsonrpc2"
Original file line number Diff line number Diff line change 5
5
"log"
6
6
"sync"
7
7
8
- "github.com/bcmi-labs /arduino-language-server/lsp"
9
- "github.com/bcmi-labs /arduino-language-server/streams"
8
+ "github.com/arduino /arduino-language-server/lsp"
9
+ "github.com/arduino /arduino-language-server/streams"
10
10
"github.com/sourcegraph/jsonrpc2"
11
11
)
12
12
Original file line number Diff line number Diff line change 9
9
"strconv"
10
10
"strings"
11
11
12
+ "github.com/arduino/arduino-language-server/handler/textutils"
13
+ "github.com/arduino/arduino-language-server/lsp"
12
14
"github.com/arduino/go-paths-helper"
13
- "github.com/bcmi-labs/arduino-language-server/handler/textutils"
14
- "github.com/bcmi-labs/arduino-language-server/lsp"
15
15
"github.com/pkg/errors"
16
16
)
17
17
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package textutils
3
3
import (
4
4
"fmt"
5
5
6
- "github.com/bcmi-labs /arduino-language-server/lsp"
6
+ "github.com/arduino /arduino-language-server/lsp"
7
7
)
8
8
9
9
// ApplyLSPTextDocumentContentChangeEvent applies the LSP change in the given text
Original file line number Diff line number Diff line change 4
4
"strings"
5
5
"testing"
6
6
7
- "github.com/bcmi-labs /arduino-language-server/lsp"
7
+ "github.com/arduino /arduino-language-server/lsp"
8
8
)
9
9
10
10
func TestApplyTextChange (t * testing.T ) {
Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ import (
7
7
"os"
8
8
"os/signal"
9
9
10
+ "github.com/arduino/arduino-language-server/handler"
11
+ "github.com/arduino/arduino-language-server/lsp"
12
+ "github.com/arduino/arduino-language-server/streams"
10
13
"github.com/arduino/go-paths-helper"
11
- "github.com/bcmi-labs/arduino-language-server/handler"
12
- "github.com/bcmi-labs/arduino-language-server/lsp"
13
- "github.com/bcmi-labs/arduino-language-server/streams"
14
14
)
15
15
16
16
var clangdPath string
Original file line number Diff line number Diff line change 6
6
"log"
7
7
"runtime/debug"
8
8
9
- "github.com/bcmi-labs /arduino-language-server/lsp"
9
+ "github.com/arduino /arduino-language-server/lsp"
10
10
"github.com/fatih/color"
11
11
"github.com/sourcegraph/jsonrpc2"
12
12
)
You can’t perform that action at this time.
0 commit comments