[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/yasnippet-snippets ab935d7c7b 12/13: Add async versions of
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/yasnippet-snippets ab935d7c7b 12/13: Add async versions of function snippets for rust (#480) |
Date: |
Fri, 5 Jan 2024 07:00:47 -0500 (EST) |
branch: elpa/yasnippet-snippets
commit ab935d7c7b26a89048e64bda6dd9ed0efe453eb6
Author: Samuel Kyletoft <45131343+SKyletoft@users.noreply.github.com>
Commit: GitHub <noreply@github.com>
Add async versions of function snippets for rust (#480)
---
snippets/rust-mode/afn | 7 +++++++
snippets/rust-mode/afnr | 7 +++++++
snippets/rust-mode/afns | 7 +++++++
snippets/rust-mode/afnw | 7 +++++++
snippets/rust-mode/pafn | 7 +++++++
snippets/rust-mode/pafnr | 7 +++++++
snippets/rust-mode/pafns | 7 +++++++
snippets/rust-mode/pafnw | 7 +++++++
8 files changed, 56 insertions(+)
diff --git a/snippets/rust-mode/afn b/snippets/rust-mode/afn
new file mode 100644
index 0000000000..9ed1d9c76e
--- /dev/null
+++ b/snippets/rust-mode/afn
@@ -0,0 +1,7 @@
+# -*- mode: snippet -*-
+# name: async fn name() { ... }
+# key: afn
+# --
+async fn ${1:name}($2) {
+ $0
+}
\ No newline at end of file
diff --git a/snippets/rust-mode/afnr b/snippets/rust-mode/afnr
new file mode 100644
index 0000000000..71cbbbd49b
--- /dev/null
+++ b/snippets/rust-mode/afnr
@@ -0,0 +1,7 @@
+# -*- mode: snippet -*-
+# name: async fn name() -> Type { ... }
+# key: afnr
+# --
+async fn ${1:name}($2) -> ${3:Type} {
+ $0
+}
\ No newline at end of file
diff --git a/snippets/rust-mode/afns b/snippets/rust-mode/afns
new file mode 100644
index 0000000000..c88e672284
--- /dev/null
+++ b/snippets/rust-mode/afns
@@ -0,0 +1,7 @@
+# -*- mode: snippet -*-
+# name: async fn name(&self) -> Type { ... }
+# key: afns
+# --
+async fn ${1:name}(${2:&self}) -> ${3:Type} {
+ $0
+}
\ No newline at end of file
diff --git a/snippets/rust-mode/afnw b/snippets/rust-mode/afnw
new file mode 100644
index 0000000000..3c358f88a6
--- /dev/null
+++ b/snippets/rust-mode/afnw
@@ -0,0 +1,7 @@
+# -*- mode: snippet -*-
+# name: async fn name<T>(x: T) where T: Clone { ... }
+# key: afnw
+# --
+async fn ${1:name}<${2:T}>(${3:x: T}) where ${4:T: Clone} {
+ $0
+}
\ No newline at end of file
diff --git a/snippets/rust-mode/pafn b/snippets/rust-mode/pafn
new file mode 100644
index 0000000000..13edd5ccc1
--- /dev/null
+++ b/snippets/rust-mode/pafn
@@ -0,0 +1,7 @@
+# -*- mode: snippet -*-
+# name: pub async fn name() { ... }
+# key: pafn
+# --
+pub async fn ${1:name}($2) {
+ $0
+}
\ No newline at end of file
diff --git a/snippets/rust-mode/pafnr b/snippets/rust-mode/pafnr
new file mode 100644
index 0000000000..3ce96818fc
--- /dev/null
+++ b/snippets/rust-mode/pafnr
@@ -0,0 +1,7 @@
+# -*- mode: snippet -*-
+# name: pub async fn name() -> Type { ... }
+# key: pafnr
+# --
+pub async fn ${1:name}($2) -> ${3:Type} {
+ $0
+}
\ No newline at end of file
diff --git a/snippets/rust-mode/pafns b/snippets/rust-mode/pafns
new file mode 100644
index 0000000000..ad223f9046
--- /dev/null
+++ b/snippets/rust-mode/pafns
@@ -0,0 +1,7 @@
+# -*- mode: snippet -*-
+# name: pub async fn name(&self) -> Type { ... }
+# key: pafns
+# --
+pub async fn ${1:name}(${2:&self}) -> ${3:Type} {
+ $0
+}
\ No newline at end of file
diff --git a/snippets/rust-mode/pafnw b/snippets/rust-mode/pafnw
new file mode 100644
index 0000000000..bea6dd2d84
--- /dev/null
+++ b/snippets/rust-mode/pafnw
@@ -0,0 +1,7 @@
+# -*- mode: snippet -*-
+# name: pub async fn name<T>(x: T) where T: Clone { ... }
+# key: pafnw
+# --
+pub async fn ${1:name}<${2:T}>(${3:x: T}) where ${4:T: Clone} {
+ $0
+}
\ No newline at end of file
- [nongnu] elpa/yasnippet-snippets updated (12103bb505 -> baf82bd9dc), ELPA Syncer, 2024/01/05
- [nongnu] elpa/yasnippet-snippets 98571357aa 07/13: *yasnippet-snippets.el: avoid duplicate loading the snippets (#468), ELPA Syncer, 2024/01/05
- [nongnu] elpa/yasnippet-snippets 1eacad1d4e 05/13: Create a snippet to create desktop files (#476), ELPA Syncer, 2024/01/05
- [nongnu] elpa/yasnippet-snippets 9f67370d9d 01/13: Merge elpy snippets (again) (#465), ELPA Syncer, 2024/01/05
- [nongnu] elpa/yasnippet-snippets d80b2ff60f 10/13: FIX: Single semicolon at beginning was indented. (#454), ELPA Syncer, 2024/01/05
- [nongnu] elpa/yasnippet-snippets 56dda449c0 11/13: faust-mode: improve license chooser (#470), ELPA Syncer, 2024/01/05
- [nongnu] elpa/yasnippet-snippets cdad57f368 02/13: snippets: mass add tree-sitter modes to .yas-parents (#481), ELPA Syncer, 2024/01/05
- [nongnu] elpa/yasnippet-snippets baf82bd9dc 13/13: Two more c++-mode snippets: forr and lambda (#472), ELPA Syncer, 2024/01/05
- [nongnu] elpa/yasnippet-snippets a98c5deb27 06/13: "fixme" snippet also excludes bash-ts-mode (#478), ELPA Syncer, 2024/01/05
- [nongnu] elpa/yasnippet-snippets ab935d7c7b 12/13: Add async versions of function snippets for rust (#480),
ELPA Syncer <=
- [nongnu] elpa/yasnippet-snippets ef4f51240b 04/13: added theorem, lemma and corollary snippets (#474), ELPA Syncer, 2024/01/05
- [nongnu] elpa/yasnippet-snippets b00a7c9f9a 08/13: Implement missing python special methods. (#467), ELPA Syncer, 2024/01/05
- [nongnu] elpa/yasnippet-snippets 9799ec9ffa 03/13: clojure-mode snippets update (#479), ELPA Syncer, 2024/01/05
- [nongnu] elpa/yasnippet-snippets 464517d0e2 09/13: ENH: python-mode/with-open (#482), ELPA Syncer, 2024/01/05