Skip to content

Commit

Permalink
Update comment header for package requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
gmlarumbe committed May 30, 2023
1 parent c156de9 commit dd9438b
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
1 change: 0 additions & 1 deletion fpga-altera.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
;; Author: Gonzalo Larumbe <gonzalomlarumbe@gmail.com>
;; URL: https://github.com/gmlarumbe/fpga
;; Version: 0.1.0
;; Package-Requires: ((emacs "28.1"))

;; 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
Expand Down
1 change: 0 additions & 1 deletion fpga-cadence.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
;; Author: Gonzalo Larumbe <gonzalomlarumbe@gmail.com>
;; URL: https://github.com/gmlarumbe/fpga
;; Version: 0.1.0
;; Package-Requires: ((emacs "28.1"))

;; 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
Expand Down
1 change: 0 additions & 1 deletion fpga-lattice.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
;; Author: Gonzalo Larumbe <gonzalomlarumbe@gmail.com>
;; URL: https://github.com/gmlarumbe/fpga
;; Version: 0.1.0
;; Package-Requires: ((emacs "28.1"))

;; 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
Expand Down
1 change: 0 additions & 1 deletion fpga-siemens.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
;; Author: Gonzalo Larumbe <gonzalomlarumbe@gmail.com>
;; URL: https://github.com/gmlarumbe/fpga
;; Version: 0.1.0
;; Package-Requires: ((emacs "28.1"))

;; 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
Expand Down
1 change: 0 additions & 1 deletion fpga-synopsys.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
;; Author: Gonzalo Larumbe <gonzalomlarumbe@gmail.com>
;; URL: https://github.com/gmlarumbe/fpga
;; Version: 0.1.0
;; Package-Requires: ((emacs "28.1"))

;; 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
Expand Down
10 changes: 8 additions & 2 deletions fpga-utils.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
;; Author: Gonzalo Larumbe <gonzalomlarumbe@gmail.com>
;; URL: https://github.com/gmlarumbe/fpga
;; Version: 0.1.0
;; Package-Requires: ((emacs "28.1"))

;; 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
Expand All @@ -29,6 +28,8 @@
(require 'compile)
(require 'ggtags)

(declare-function company-mode "company")

;;;; Custom
(defcustom fpga-utils-source-extension-re (concat "\\." (regexp-opt '("sv" "svh" "v" "vh" "vhd" "vhdl")) "$")
"FPGA source file extension regexp."
Expand All @@ -40,6 +41,11 @@
:type 'function
:group 'fpga)

(defcustom fpga-utils-completion-use-company-p t
"Wheter to use `company-mode' for completion in shells."
:type 'function
:group 'fpga)


;;;; Faces
(defconst fpga-utils-compilation-msg-code-face 'fpga-utils-compilation-msg-code-face)
Expand Down Expand Up @@ -211,7 +217,7 @@ ARGS is a property list."
;; file with results from `comint--complete-file-name-data', while there is
;; no actual file. If this function is before capf-fn in the
;; `comint-dynamic-complete-functions' hook, it will never execute.
(when (locate-library "company")
(when fpga-utils-completion-use-company-p
(require 'company)
(setq-local comint-dynamic-complete-functions '(comint-c-a-p-replace-by-expanded-history))
(setq-local company-backends '(company-files company-capf))
Expand Down
1 change: 0 additions & 1 deletion fpga-xilinx.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
;; Author: Gonzalo Larumbe <gonzalomlarumbe@gmail.com>
;; URL: https://github.com/gmlarumbe/fpga
;; Version: 0.1.0
;; Package-Requires: ((emacs "28.1"))

;; 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
Expand Down
2 changes: 1 addition & 1 deletion fpga.el
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
;; URL: https://github.com/gmlarumbe/fpga
;; Version: 0.1.0
;; Keywords: tools
;; Package-Requires: ((emacs "28.1") (ggtags "0.9.0"))
;; Package-Requires: ((emacs "28.1") (ggtags "0.9.0") (company "0.9.13"))

;; 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
Expand Down

0 comments on commit dd9438b

Please sign in to comment.