-
-
Notifications
You must be signed in to change notification settings - Fork 905
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
10 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
;;; lsp.el --- LSP mode -*- lexical-binding: t; -*- | ||
;;; lsp-mode.el --- LSP mode -*- lexical-binding: t; -*- | ||
|
||
;; Copyright (C) 2018 Vibhav Pant, Ivan Yonchovski | ||
|
||
;; Author: Ivan Yonchovski <[email protected]> | ||
;; Author: Vibhav Pant <[email protected]> | ||
;; Author: Vibhav Pant, Fangrui Song, Ivan Yonchovski | ||
;; Keywords: languages | ||
;; Package-Requires: ((emacs "25.1") (dash "2.14.1") (dash-functional "2.14.1") (f "0.20.0") (ht "2.0") (spinner "1.7.3")) | ||
;; Version: 5.0 | ||
|
||
;; This program is free software; you can redistribute it and/or modify | ||
;; it under the terms of the GNU General Public License as published by | ||
|
@@ -3504,4 +3504,4 @@ such." | |
lsp--buffer-workspaces))))) | ||
|
||
(provide 'lsp-mode) | ||
;;; lsp.el ends here | ||
;;; lsp-mode.el ends here |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
;; The code was moved into lsp-mode.el. This file is kept only for backward compatibility. | ||
(require 'lsp-mode) | ||
|
||
(provide 'lsp) | ||
|
||
;;; lsp.el ends here |