Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vunit-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@
(move-end-of-line 1))
(setq endpos (point))
(setq testcasestring (buffer-substring beginpos endpos))
(if (eq testcasestring "")

Check warning on line 213 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (30.1, melpa)

‘eq’ called with literal string that may never match (arg 2)

Check warning on line 213 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (30.1, byte-compile)

‘eq’ called with literal string that may never match (arg 2)

Check warning on line 213 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (snapshot, melpa)

‘eq’ called with literal string that may never match (arg 2)

Check warning on line 213 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (snapshot, byte-compile)

‘eq’ called with literal string that may never match (arg 2)
(progn
(vunit--kill-buffer-and-window)
(error "No Testcases were found")))
Expand All @@ -218,7 +218,7 @@
(setq testcases (split-string testcasestring "\n" t))
(setq inhibit-read-only nil)
(if (or (not testcases)
(eq "" testcasestring))

Check warning on line 221 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (30.1, melpa)

‘eq’ called with literal string that may never match (arg 1)

Check warning on line 221 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (30.1, byte-compile)

‘eq’ called with literal string that may never match (arg 1)

Check warning on line 221 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (snapshot, melpa)

‘eq’ called with literal string that may never match (arg 1)

Check warning on line 221 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (snapshot, byte-compile)

‘eq’ called with literal string that may never match (arg 1)
(progn
(vunit--kill-buffer-and-window)
(error "No Testcases were found")))
Expand Down Expand Up @@ -408,11 +408,11 @@
(when (derived-mode-p 'vhdl-mode)
(vunit-mode 1)))

;;;###autoload
;;;###autoload(autoload 'vunit-buffer-menu/body "vunit-mode")
(defhydra vunit-buffer-menu
(:color blue
:pre (vunit--flag-enabled-message))
"

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (snapshot, checkdoc)

First sentence should end with punctuation

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (snapshot, checkdoc)

Documentation strings should not start or end with whitespace

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.4, melpa)

Some lines are over 80 columns wide

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.4, melpa)

First sentence should end with punctuation

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.4, melpa)

Documentation strings should not start or end with whitespace

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.2, melpa)

Some lines are over 80 columns wide

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.2, melpa)

First sentence should end with punctuation

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.2, melpa)

Documentation strings should not start or end with whitespace

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.1, checkdoc)

Some lines are over 80 columns wide

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.1, checkdoc)

First sentence should end with punctuation

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.1, checkdoc)

Documentation strings should not start or end with whitespace

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (30.1, melpa)

Some lines are over 80 columns wide

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (30.1, melpa)

First sentence should end with punctuation

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (30.1, melpa)

Documentation strings should not start or end with whitespace

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (snapshot, melpa)

First sentence should end with punctuation

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (snapshot, melpa)

Documentation strings should not start or end with whitespace

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (28.2, melpa)

Some lines are over 80 columns wide

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (28.2, melpa)

First sentence should end with punctuation

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (28.2, melpa)

Documentation strings should not start or end with whitespace

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (30.1, checkdoc)

Some lines are over 80 columns wide

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (30.1, checkdoc)

First sentence should end with punctuation

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (30.1, checkdoc)

Documentation strings should not start or end with whitespace

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.4, checkdoc)

Some lines are over 80 columns wide

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.4, checkdoc)

First sentence should end with punctuation

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.4, checkdoc)

Documentation strings should not start or end with whitespace

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (28.2, checkdoc)

Some lines are over 80 columns wide

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (28.2, checkdoc)

First sentence should end with punctuation

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (28.2, checkdoc)

Documentation strings should not start or end with whitespace

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.2, checkdoc)

Some lines are over 80 columns wide

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.2, checkdoc)

First sentence should end with punctuation

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.2, checkdoc)

Documentation strings should not start or end with whitespace

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (28.1, melpa)

Some lines are over 80 columns wide

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (28.1, melpa)

First sentence should end with punctuation

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (28.1, melpa)

Documentation strings should not start or end with whitespace

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (28.1, checkdoc)

Some lines are over 80 columns wide

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (28.1, checkdoc)

First sentence should end with punctuation

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (28.1, checkdoc)

Documentation strings should not start or end with whitespace

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.1, melpa)

Some lines are over 80 columns wide

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.1, melpa)

First sentence should end with punctuation

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.1, melpa)

Documentation strings should not start or end with whitespace

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.3, melpa)

Some lines are over 80 columns wide

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.3, melpa)

First sentence should end with punctuation

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.3, melpa)

Documentation strings should not start or end with whitespace

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.3, checkdoc)

Some lines are over 80 columns wide

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.3, checkdoc)

First sentence should end with punctuation

Check warning on line 415 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.3, checkdoc)

Documentation strings should not start or end with whitespace
^Basic^ ^Compile^ ^Simulate^ ^Flags^
^^^^^^^-------------------------------------------------------------------------------
_o_: Open Script _c_: All _a_: All _g_: GUI
Expand Down Expand Up @@ -442,7 +442,7 @@
("d" (vunit-toggle-flag vunit--flag-log-level) nil :color pink))

(easy-menu-define vunit-menu vunit-mode-map
"Vunit Menu"

Check warning on line 445 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (snapshot, checkdoc)

First sentence should end with punctuation

Check warning on line 445 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.4, melpa)

First sentence should end with punctuation

Check warning on line 445 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.2, melpa)

First sentence should end with punctuation

Check warning on line 445 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.1, checkdoc)

First sentence should end with punctuation

Check warning on line 445 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (30.1, melpa)

First sentence should end with punctuation

Check warning on line 445 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (snapshot, melpa)

First sentence should end with punctuation

Check warning on line 445 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (28.2, melpa)

First sentence should end with punctuation

Check warning on line 445 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (30.1, checkdoc)

First sentence should end with punctuation

Check warning on line 445 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.4, checkdoc)

First sentence should end with punctuation

Check warning on line 445 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (28.2, checkdoc)

First sentence should end with punctuation

Check warning on line 445 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.2, checkdoc)

First sentence should end with punctuation

Check warning on line 445 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (28.1, melpa)

First sentence should end with punctuation

Check warning on line 445 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (28.1, checkdoc)

First sentence should end with punctuation

Check warning on line 445 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.1, melpa)

First sentence should end with punctuation

Check warning on line 445 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.3, melpa)

First sentence should end with punctuation

Check warning on line 445 in vunit-mode.el

View workflow job for this annotation

GitHub Actions / check (29.3, checkdoc)

First sentence should end with punctuation
'("Vunit"
:visible vunit-mode
("Basic"
Expand Down