Skip to content

Commit

Permalink
tests: fix occurences of deprecated "options" option
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Mar 30, 2024
1 parent 0f6d445 commit c706207
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/test-sources/example-configurations/issues.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
};
};

options = {
opts = {
# Indentation
autoindent = true;
tabstop = 4;
Expand Down Expand Up @@ -69,7 +69,7 @@
};
};

options = {
opts = {
number = true;
shiftwidth = 2;
tabstop = 2;
Expand Down
2 changes: 1 addition & 1 deletion tests/test-sources/modules/highlight.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
example = {
options.termguicolors = true;
opts.termguicolors = true;

highlight = {
MacchiatoRed.fg = "#ed8796";
Expand Down
2 changes: 1 addition & 1 deletion tests/test-sources/modules/options.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
options = {
options = {
opts = {
updatetime = 100; # Faster completion

# Line numbers
Expand Down

0 comments on commit c706207

Please sign in to comment.