@@ -28,8 +28,6 @@ ls.setup({
2828
2929## Snippets
3030
31- Snippets which trigger ends with "!" are ` autosnippet ` .
32-
3331<details >
3432<summary >All</summary >
3533
@@ -48,20 +46,33 @@ Snippets which trigger ends with "!" are `autosnippet`.
4846
4947#### Normal Snippets
5048
51- | Trig | Desc | Context Required |
52- | :--------: | ------------------------------------------------------------------------------------------------ | :---------------------------: |
53- | ` ctor! ` | Expand to default constructor | In Class |
54- | ` dtor! ` | Expand to default destructor | In Class |
55- | ` cc! ` | Expand to default copy constructor | In Class |
56- | ` mv! ` | Expand to default move constructor | In Class |
57- | ` ncc! ` | Expand to delete copy constructor | In Class |
58- | ` nmv! ` | Expand to delete move constructor | In Class |
59- | ` ncm! ` | Expand to delete copy and move constructor | In Class |
60- | ` fn ` | Expand to lambda function in argument list or function body, otherwise expand to normal function | No |
61- | ` \|trans ` | Expand to ranges::views::transform pipe. | No |
62- | ` \|filter ` | Expand to ranges::views::filter pipe. | No |
63- | ` cpo ` | Expand to customize point object. | No |
64- | ` once ` | Expand to ` pragma once ` marker at the front of the file. | All lines before are comments |
49+ | Trig | Desc | Context Required |
50+ | :--------: | ------------------------------------------------------------------------------------------------ | :--------------: |
51+ | ` fn ` | Expand to lambda function in argument list or function body, otherwise expand to normal function | No |
52+ | ` \|trans ` | Expand to ranges::views::transform pipe. | No |
53+ | ` \|filter ` | Expand to ranges::views::filter pipe. | No |
54+ | ` cpo ` | Expand to customize point object. | No |
55+
56+ #### Auto-snippets
57+
58+ | Trig | Desc | Context Required |
59+ | :-----: | -------------------------------------------------------- | :---------------------------: |
60+ | ` ctor! ` | Expand to default constructor | In Class |
61+ | ` dtor! ` | Expand to default destructor | In Class |
62+ | ` cc! ` | Expand to default copy constructor | In Class |
63+ | ` mv! ` | Expand to default move constructor | In Class |
64+ | ` ncc! ` | Expand to delete copy constructor | In Class |
65+ | ` nmv! ` | Expand to delete move constructor | In Class |
66+ | ` ncm! ` | Expand to delete copy and move constructor | In Class |
67+ | ` once ` | Expand to ` pragma once ` marker at the front of the file. | All lines before are comments |
68+ | ` u8 ` | Expand to ` uint8_t ` . | No |
69+ | ` u16 ` | Expand to ` uint16_t ` . | No |
70+ | ` u32 ` | Expand to ` uint32_t ` . | No |
71+ | ` u64 ` | Expand to ` uint64_t ` . | No |
72+ | ` i8 ` | Expand to ` int8_t ` . | No |
73+ | ` i16 ` | Expand to ` int16_t ` . | No |
74+ | ` i32 ` | Expand to ` int32_t ` . | No |
75+ | ` i64 ` | Expand to ` int64_t ` . | No |
6576
6677#### Postfix Snippets
6778
0 commit comments