Skip to content

Commit

Permalink
acc
Browse files Browse the repository at this point in the history
  • Loading branch information
rtorruellas committed Dec 15, 2023
1 parent 9b5d79f commit 341834c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
6 changes: 3 additions & 3 deletions public/stylesheets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ h2 {
}

a {
color: #1a0dab;
color: #1a65ff;
text-decoration: none;
}

Expand Down Expand Up @@ -379,12 +379,12 @@ kbd {
}

h1 a {
color: #ff6e6e;
color: #ff1a2b;
/* Adjust link colors as needed */
}

a {
color: #ff6e6e;
color: #ff1a2b;
/* Different link color for dark mode */
}

Expand Down
18 changes: 9 additions & 9 deletions views/layouts/default.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -64,57 +64,57 @@
<p>
This project aims to be one of the most accessible vim guides available. We
made sure to support mobile, desktop, and other
<a href="#languages">languages</a>.
<a href="#languages" aria-label="Jump to languages section">languages</a>.
</p>
<p>
<a target="_blank" href="https://github.com/sponsors/rtorr">❤️ Please consider sponsoring this
<a target="_blank" href="https://github.com/sponsors/rtorr" aria-label="Sponsor this project on GitHub">❤️ Please consider sponsoring this
project ❤️</a>!
</p>
<p>
You can read about how to contribute (and help improve) by viewing our
<a href="https://github.com/rtorr/vim-cheat-sheet/blob/master/README.md" target="_blank"
rel="noopener noreferrer">
rel="noopener noreferrer" aria-label="Read the README on GitHub">
README
</a>
. There you can see how to set up this project, or how to contribute a new
language. Here is a big thank you to our
<a href="https://github.com/rtorr/vim-cheat-sheet/graphs/contributors" target="_blank"
rel="noopener noreferrer">
rel="noopener noreferrer" aria-label="View project contributors on GitHub">
contributors!
</a>
</p>
<p>
This project is licensed under
<a href="https://github.com/rtorr/vim-cheat-sheet/blob/master/License.txt" target="_blank"
rel="noopener noreferrer">
rel="noopener noreferrer" aria-label="View the MIT License for this project">
The MIT License (MIT)
</a>
.
</p>
<h3>Other places to find this document</h3>
<p>
This document was embedded in
<a href="https://duckduckgo.com/?q=vim+cheat+sheet" target="_blank" rel="noopener noreferrer">
<a href="https://duckduckgo.com/?q=vim+cheat+sheet" target="_blank" rel="noopener noreferrer" aria-label="Search for this document on DuckDuckGo">
DuckDuckGo
</a>
.
</p>
<h3>More resources</h3>
<p>
Interactive Vim tutorial:
<a href="https://openvim.com/" target="_blank" rel="noopener noreferrer">
<a href="https://openvim.com/" target="_blank" rel="noopener noreferrer" aria-label="Visit Open Vim for an interactive Vim tutorial">
Open Vim
</a>
</p>
<p>
Vim quick reference from Vim help pages:
<a href="https://vimhelp.org/quickref.txt.html" target="_blank" rel="noopener noreferrer">
<a href="https://vimhelp.org/quickref.txt.html" target="_blank" rel="noopener noreferrer" aria-label="Access Vim quick reference">
quickref.txt
</a>
</p>
<p>
List of all Vim ex (<kbd>:</kbd>) commands:
<a href="https://vimhelp.org/index.txt.html#ex-cmd-index" target="_blank" rel="noopener noreferrer">
<a href="https://vimhelp.org/index.txt.html#ex-cmd-index" target="_blank" rel="noopener noreferrer" aria-label="View list of all Vim ex commands">
ex-cmd-index
</a>
</p>
Expand Down
2 changes: 1 addition & 1 deletion views/partials/languages.hbs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<ul>
{{#each languagesMetaData as |language|}}
<li>
<a href="/lang/{{language.lang}}">{{language.title}}</a>
<a href="/lang/{{language.lang}}" lang="{{language.lang}}">{{language.title}}</a>
</li>
{{/each}}
</ul>
1 change: 1 addition & 0 deletions views/partials/sheet.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,7 @@
<li>
<kbd>:3,5d</kbd> - {{__ 'cutAndPaste.commands.threeToFiveD'}}
</li>
</ul>
<div class="well">
<strong>Tip</strong> {{__ 'cutAndPaste.tip1.title'}} <br>
e.g. <br>
Expand Down

0 comments on commit 341834c

Please sign in to comment.