Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

プログラミング効率化

$
0
0

vimtutor

terminalでvimtutorと打てば、vimのチュートリアルが行える。

vimium

chromeの拡張機能。コマンドだけでブラウザ操作ができる。

intellij

リモートとローカルのフォルダ構成などを自動マッピングして、自動で同期してくれる。

jsについて

test.js
$(document).ready(function(){});

document(このページ)を読み込み終わったら、function(){}を実行する。

js.test.js
$('.m_tab_item').click(function(){});

m_tab_itemというクラスがついている要素(

など。)をクリックした時にfunction(){}を実行する。

gitについて

git add ./

カレントフォルダをコミット対象として追加する。

git commit -m 'test commit'

コメントtest commitでもってコミット。

git push

自分のいるブランチに対してプッシュ(更新)する。

git branch

自分のいるブランチ名を確認できる

git checkout 'test'

testという名前のブランチに移動する。

git stash

前回のコミットからの変更情報を一時的に別の場所に退避する。プルした時にコンフリクトしたりした場合に、一旦自分の変更を退避させ、プルするといったことをする。

git stash list

stashした変更情報はリスト化されている。一番上が一番新しいやつ。

git stash apply stash@{0}

stash listで確認し、戻したいやつをstash@{0}などで指定する。

git pull origin develop

developという名前のブランチをプル(ローカルに持ってくる)する。

git status

gitに関する現在のステータス情報を取得する。

infinity scroll

testjs
$(window).on('load scroll',function(){$(window).height()+$(window).scrollTop()vardocumentHeight=$(document).height()ここでajax使ってapi叩くその結果からhtmlを作るjqueryinsertAfterhtmlに書き込む

Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>