Codemirror 기본 단축키 해제(KeyMap)
1451 단어 CodeMirrortech
Codemirror
keyMap
주위의 소스 코드를 검색한 결과 다음과 같이 Codemirror 실례addKeyMap
에 대한 값 전달false
을 통해 비활성화할 수 있습니다.cm.addKeyMap({
'Alt-D': false,
});
addKeyMap
추가된 키맵을 무효로 하는 파일'이라고 쓰여 있는 것은 기본 키맵을 무효로 하는 것이 아니다.cm.removeKeyMap(map: object)
Disable a keymap added with addKeyMap. Either pass in the key map object itself, or a string, which will be compared against the name property of the active key maps.
Reference
이 문제에 관하여(Codemirror 기본 단축키 해제(KeyMap)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/catnose99/articles/6a5acfa798c9fa텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)