For a use-case where I've copied thing 1, then I start my Textile, then I go and copy thing 2 from somewhere, and then Textile continues with the remaining steps with thing 1 and thing 2?
Show HN: Textile – A desktop app for weaving together bits of text
11–20 of 24 posts
Re: Show HN: Textile – A desktop app for weaving together bits of text
#12Can it wait/prompt for something new to be put onto the clipboard while it runs a Textile? For a use-case where I've copied thing 1, then I start my Textile, then I go and copy thing 2 from somewhere, and then Textile continues with the remaining steps with thing 1 and thing 2?
(1) When creating the textile, you would add a step to "wait for new clipboard data."
(2) When you run the textile, and it gets to that step, a modal would appear, prompting you to copy the new thing to your clipboard.
(3) Once you've got the new thing on your clipboard, you would go back and click "Continue" on the modal from step 2.
(4) Textile would continue with the new thing on your clipboard.
Is that kind of what you were thinking?
Re: Show HN: Textile – A desktop app for weaving together bits of text
#13Re: Show HN: Textile – A desktop app for weaving together bits of text
#14Re: Show HN: Textile – A desktop app for weaving together bits of text
#15Re: Show HN: Textile – A desktop app for weaving together bits of text
#16Textile is one of the core markups supported by GitHub and Pandoc:
https://github.com/github/markup / https://pandoc.org/
And many CMS, most famously TextPattern and MoveableType, but also things like Jekyll:
https://textile-lang.com/article/textile-markup-language-sup...
Re: Show HN: Textile – A desktop app for weaving together bits of text
#171. Everything I ever paste (which is longer than >N) will be saved into a file. The assumption being is that it's an e-mail or message with high reuse potential
2. I have a single keybind that launches a script-selector and passes the currently selected text to it.
3. Script examples: save selection as markdown in a preset file (for use with LLMs); send selection to a temporary emacs buffer.
4. I have two shortcut that - take the current text area into emacs to edit it; then, send the emacs buffer back to the current selected area (by pasting). Useful for replying to messages
Re: Show HN: Textile – A desktop app for weaving together bits of text
#18I’m a little confused what this does. Is it like espanso?
I'm not too familiar with Espanso, but Textile is not a text expander. Textile allows you to pre-define a sequence of steps that dynamically generate the text you want, by running commands on your computer, reading your clipboard, or using hard-coded text you provide. Here's a quick example, and one that I often use with Textile to generate a preview URL based on my current branch: (1) Start with the output of the co…