並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 5 件 / 5件

新着順 人気順

Vimscriptの検索結果1 - 5 件 / 5件

  • 世界のプログラミング言語(37) 達人に愛され30年周年Vimを支えたVimScript

    そして、コマンドモードとは、ノーマルモードで「:」キーを押した状態です。コマンドモードでは、さまざまなコマンドを実行できます。ファイルの保存「w」やエディタの終了も「q」を行うにもコマンドモードで行います。なお、コマンドモードでは、VimScriptを実行できます。例えば、Vimを起動した状態(ノーマルモード)で、「:」を押してコマンドモードにしたら、以下のコマンドを実行してみましょう。 echo "Hello, World!" するとVimの最下行に「Hello, World!」と表示されます。 VimのコマンドモードでHello, World!を実行したところ なお、簡単な計算をしたい場合も、同じようにコマンドモードで以下のように記述できます。以下のコマンドを実行すると、610が表示されます。 echo 10 + 20 * 30 VimScriptで計算してみたところ そして、Vimで

      世界のプログラミング言語(37) 達人に愛され30年周年Vimを支えたVimScript
    • GitHub - iggredible/Learn-Vim: Learning Vim and Vimscript doesn't have to be hard. This is the guide that you're looking for 📖

      You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

        GitHub - iggredible/Learn-Vim: Learning Vim and Vimscript doesn't have to be hard. This is the guide that you're looking for 📖
      • How can I pass the current line to a Vimscript function?

        I am trying to create a Vim mapping that will operate on the current line, taking a string like this: [boiled cabbage, mad donkey, elephant, very dark fudge] And quoting all the list elements to end up with this: ["boiled cabbage", "mad donkey", "elephant", "very dark fudge"] I tried with vim regexes, but figured it would be easier to write a function that takes the current line as an argument and

          How can I pass the current line to a Vimscript function?
        • GitHub - google/vimscript-language-server

          Implementation of Language Server protocol for Vim script / vimL language in Rust. This project is still in very early development stage - it does not support all of Vim script syntax and most features are not implemented yet. The long term goal is to implement Vim script AST that will allow for: building language server building Vim script formatter, that vim plugins could use in CI building lint

            GitHub - google/vimscript-language-server
          • neovimの設定をvimscriptからluaにしたときの覚書とか - Qiita

            覚書なので随時追加していく系かもです 注意事項 三文記事です 内容はほぼ日記と覚書です 基本的には公式ドキュメント嫁案件ではあります なんか間違えていたら教えてくださるとありがたいです とりあえず設定の書き方で迷ったときは… githubでとにかく <プラグイン名/機能名> lang:lua で検索した結果をとにかく持ってきて動きを確認したりしていました 方法的にはマイコンのころからある、既存コードをコピペして使いやすく改変でしかありませんが、おおよそすでにきちんと動くコードから、luaの適切な書き方なども学ぶことができたので、とてもよかったです vimscript から lua に変更したときに戸惑ったあれこれ 文字列結合 (lua) luaの文字列結合は .. です、 + ではありません

              neovimの設定をvimscriptからluaにしたときの覚書とか - Qiita
            1