Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- matrix trnasformations
- 빅오 표기법
- matrix fo a linear transformation
- 랜덤 순서 배열
- 코틀린 Hello World!
- includepdf
- Big-Oh 예제
- Big Omega
- one-to-one
- 빅오메가
- trivial solution
- NumPy
- 빅세타
- 이진 탐색
- 일차변환
- nontrivial solution
- nonhomogeneous linear system
- linear dependence
- homogeneous linear system
- itertools
- 코틀린 시작하기
- 재귀함수
- Big-O 예제
- 페이지 겹칩
- recursive algorithms
- python
- Big Theta
- Big-Oh notation
- 배열 섞기
- 알고리즘 분석의 실례
Archives
- Today
- Total
코딩 연습
emcas에서 yas-snippets 사용시 로딩이 안되는 문제 본문
반응형
emacs doom 에서 yas-snippets을 잘 사용하고 있었는데,
어느날 갑자기 내가 만든 custom snippets 들이 로딩이 안되어 사용이 불가능한 상황이 발생했다.
새롭게 만들어 넣으면 맨 마지막 snippet 만 로딩이 되고, 앞선 snippet 들은 모두 언로딩되는 현상이 반복되어,
검색에 검색을 거듭해본 결과
snippet 파일에서 uuid 부분을 설정해주면 해결된다는 사실을 알아냈다.
# -*- mode: snippet -*-
# name: choice box
# uuid: JK_choose_box
# key: >cb
# condition: t
# --
\begin{ChooseBox}{보기}
\begin{enumerate}[ㄱ.]
\end{enumerate}
\end{ChooseBox}
uuid: <- 이 부분이 원래는 비어있는데, 그냥 뭐라도 하나 써주면 그때부터 제대로 동작한다.
반응형