-
-
Notifications
You must be signed in to change notification settings - Fork 669
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(web): support function editor with lsp (#1784)
* feat(web): init editor * feat: add theme * feat: add file system part * feat: complete initial editor * feat(web): add lsp status * feat: add function position cache & create function not restart lsp * chore: change json editor to @monaco-editor/react * refactor: change env editor to table * feat: add function file delete & style css * fix: fix vite script dev * refactor monaco editor to monaco-react * lint * resolve * resolve * resolve * feat: add function editor switch * feat(web): support func editor with lsp or not * common setting style & text * chore: update package-lock to fix npm ci error * fix(web): fix merge error * add env editor mode & func editor close eventlistener * fix build * fix type error * fix(web): fix loadDeclaration * fix env editor highlight * fix loadDeclaration * remove console * Merge branch 'main' of https://github.com/labring/laf into test/ts-editor * Merge branch 'main' of https://github.com/labring/laf into test/ts-editor * add app lsp required config * fix: fix create url when baseurl and path undefined * fix * fix * fix * add replace * try catch * ignore init again error * fix env * fix not to disconnect lsp * free mem * catch log stream abort error * fix(web): fix editor type resolve & theme --------- Co-authored-by: 0fatal <2816813070@qq.com> Co-authored-by: maslow <wangfugen@126.com>
- Loading branch information
1 parent
5a63468
commit 022ee46
Showing
51 changed files
with
3,797 additions
and
1,206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
white-space: nowrap; | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
font-family: Inter; | ||
} |
Oops, something went wrong.