You can use one of the following to copy from the clipboard in Vim:

"+p

"*p

SHIFTINSERT

Which one you use depends on your environment.

If you're using gVim or MacVim, you'll want "+p

If you're using Vim from the command line, you'll want "*p

If you're in insert mode or ex mode (I think) you use SHIFTINSERT

백북에서 insert는 fn Enter

By insert I mean the key over by HOMEPAGE UP, and DELETE

Explanation:

  • " means you're going to specify a register
  • there are 26 custom registers - 1 for each letter
  • there are many other registers (see this)
  • + or " refers to the unnamed buffer, which represents the system clipboard
  • p is the normal put command

More info on buffers:

If you want, you can store different text in different buffers.

To yank 3 lines to the buffer named x use this:

"x3yy

To paste the contents of the buffer named y above the cursor:

"yP

설정

트랙백

댓글

Web Standard (5)

JS HTML PHP 2012. 1. 17. 20:43
Jquery 계속


 이건 아무것도 작업되지 않은 것

첫번째로 여러가지 해봐야지
 /jquery animiation으로들어가서 index열면 여러가지 키를 누르면 해야 하는 일들이 있다.

 
자, 이걸 해결하기 위하여 js/animation.js 에다가 function들을 추가한다.

 요렇게 


 코다 슬라이더 해보자. index_a.html

$($function() {
    $('#blogSlider').codaSlider();
}) 요렇게만 해주면 된다고 한다. 

.slider를 slider로 만들어 보자.

일단 css를 수정해 보자 .slider



그 다음에는 slider들을 추가해 보자.



 



coda도 zip 여기 들어있으니 잘 찾아봅시다~

'JS HTML PHP' 카테고리의 다른 글

CSS 레이아웃 - Float 속성을 이용한 레이아웃 만들기  (0) 2011.12.17
Jquery 강좌  (0) 2011.12.17
ADODB와 쿼리 캐시를 사용 하는 방법?  (0) 2011.12.17
Web Standard Class  (0) 2011.12.15
DOM Event  (0) 2011.12.13

설정

트랙백

댓글