Compare commits

...

3 Commits

Author SHA1 Message Date
sudo pacman -Syu dd0ea0f9de Merge branch 'main' of https://github.com/haunt98/posts-go 2024-04-15 21:37:05 +07:00
dependabot[bot] a1049b1bdc
build(deps): bump golang.org/x/sync from 0.6.0 to 0.7.0 (#41)
Bumps [golang.org/x/sync](https://github.com/golang/sync) from 0.6.0 to 0.7.0.
- [Commits](https://github.com/golang/sync/compare/v0.6.0...v0.7.0)

---
updated-dependencies:
- dependency-name: golang.org/x/sync
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-15 17:21:29 +07:00
sudo pacman -Syu 24ec5af5cc feat: more vim 2024-04-15 13:52:03 +07:00
4 changed files with 12 additions and 6 deletions

View File

@ -395,11 +395,16 @@
>Vim Tips (Revisited)</a
>
</li>
<li>
<a href="https://superuser.com/a/189956" rel="nofollow"
>How do I reverse selected lines order in Vim?</a
>
</li>
<li>
<a
href="https://superuser.com/questions/189947/how-do-i-reverse-selected-lines-order-in-vim"
href="https://www.redhat.com/sysadmin/use-vim-macros"
rel="nofollow"
>https://superuser.com/questions/189947/how-do-i-reverse-selected-lines-order-in-vim</a
>Use Vim macros to automate frequent tasks</a
>
</li>
<li>

2
go.mod
View File

@ -6,7 +6,7 @@ require (
github.com/google/go-github/v60 v60.0.0
github.com/make-go-great/netrc-go v0.0.2
golang.org/x/oauth2 v0.19.0
golang.org/x/sync v0.6.0
golang.org/x/sync v0.7.0
)
require github.com/google/go-querystring v1.1.0 // indirect

4
go.sum
View File

@ -15,8 +15,8 @@ github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcU
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
golang.org/x/oauth2 v0.19.0 h1:9+E/EZBCbTLNrbN35fHv/a/d/mOBatymz1zbtQrXpIg=
golang.org/x/oauth2 v0.19.0/go.mod h1:vYi7skDa1x015PmRRYZ7+s1cWyPgrPiSYRe4rnsexc8=
golang.org/x/sync v0.6.0 h1:5BMeUDZ7vkXGfEr1x9B4bRcTH4lpkTkpdh0T/J+qjbQ=
golang.org/x/sync v0.6.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M=
golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

View File

@ -162,5 +162,6 @@ Ground rules:
- [neovim Lua-guide](https://neovim.io/doc/user/lua-guide.html)
- Hidden gem:
- [Vim Tips (Revisited)](https://bluz71.github.io/2021/09/10/vim-tips-revisited.html)
- https://superuser.com/questions/189947/how-do-i-reverse-selected-lines-order-in-vim
- [How do I reverse selected lines order in Vim?](https://superuser.com/a/189956)
- [Use Vim macros to automate frequent tasks](https://www.redhat.com/sysadmin/use-vim-macros)
- [3 Vim commands for blazingly fast navigation between brackets ⚡](https://dev.to/m4xshen/3-vim-commands-for-blazingly-fast-navigation-between-brackets-55kc)