Skip to content

ryota2357/cpl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cpl

Competitive Programming Library.

cpl
├── LICENSE                        // MIT license.
├── README.md
├── autoload/                      // Vim script for ddu.vim integration.
├── denops/                        // ddu.vim integration (source and kind)
├── lib/
│   ├── [Library Name]/            // Library name. This is used for item name of ddu.
│   │   ├── index.cpp              // Library body.
│   │   ├── info.toml              // Infomation file of this library.
│   │  ...
│  ...
└── tests
    ├── test_runner.ts             // Excuted by `make test`.
    ├── generate.rb                // Excuted by `make gen_test`.
    ├── cases/                     // Test input/output files.
    ├── checker/                   // Checker scripts for test.
    └── library-checker-problems/  // Used by generate.rb

Library test result

Generated by: jiro4989/textimg

ddu.vim integration

source

call ddu#start({'sources': [{'name': 'cpl'}]})

kind

call ddu#custom#patch_global({
    \   'kindOptions': {
    \     'cpl': {
    \       'defaultAction': 'paste',
    \     },
    \   }
    \ })