Skip to content

Commit

Permalink
Fix some typos in README and verilog-ext-compile
Browse files Browse the repository at this point in the history
  • Loading branch information
gmlarumbe committed Jun 9, 2023
1 parent b9ca5a8 commit bc04321
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -387,10 +387,10 @@ Auto convert block comments to names after file saving.

- `verilog-ext-block-end-comments-to-names-mode`

## Company-keywords ##
## Company keywords ##


Setup `company` to complete with SystemVerilog keywords
Setup `company` to complete with SystemVerilog keywords.


## Port connections ##
Expand Down
12 changes: 8 additions & 4 deletions verilog-ext-compile.el
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,23 @@

(require 'verilog-mode)

(defgroup verilog-ext-compile nil
"Verilog-ext compilation."
:group 'verilog-ext)

(defconst verilog-ext-compile-filename-re "[a-zA-Z0-9-_\\.\\/]+")

(defconst verilog-ext-compile-msg-code-face 'verilog-ext-compile-msg-code-face)
(defface verilog-ext-compile-msg-code-face
'((t (:foreground "gray55")))
'((t (:inherit font-lock-comment-face)))
"Face for compilation message codes."
:group 'fpga)
:group 'verilog-ext-compile)

(defconst verilog-ext-compile-bin-face 'verilog-ext-compile-bin-face)
(defface verilog-ext-compile-bin-face
'((t (:foreground "goldenrod")))
'((t (:inherit font-lock-function-name-face)))
"Face for compilation binaries."
:group 'fpga)
:group 'verilog-ext-compile)

(defmacro verilog-ext-compile-define-mode (name &rest args)
"Macro to define a compilation derived mode for a Verilog error regexp.
Expand Down

0 comments on commit bc04321

Please sign in to comment.