mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 01:51:40 -05:00
Hide some internal functions from help
This commit is contained in:
parent
e0f9fa4e45
commit
041d8f6388
1 changed files with 6 additions and 4 deletions
|
@ -2192,9 +2192,10 @@ export async function yank(...content: string[]) {
|
||||||
await setclip(content.join(" "))
|
await setclip(content.join(" "))
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Copies a string to the clipboard/selection buffer depending on the user's preferences
|
/**
|
||||||
|
* Copies a string to the clipboard/selection buffer depending on the user's preferences
|
||||||
*
|
*
|
||||||
* @hidden
|
* @hidden
|
||||||
*/
|
*/
|
||||||
//#background_helper
|
//#background_helper
|
||||||
async function setclip(str) {
|
async function setclip(str) {
|
||||||
|
@ -2220,9 +2221,10 @@ async function setclip(str) {
|
||||||
return await Promise.all(promises)
|
return await Promise.all(promises)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Fetches the content of the clipboard/selection buffer depending on user's preferences
|
/**
|
||||||
|
* Fetches the content of the clipboard/selection buffer depending on user's preferences
|
||||||
*
|
*
|
||||||
* @hidden
|
* @hidden
|
||||||
*/
|
*/
|
||||||
//#background_helper
|
//#background_helper
|
||||||
async function getclip() {
|
async function getclip() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue