Difference between revisions of "Clipboard Snips"
Jump to navigation
Jump to search
Russ hensel (talk | contribs) |
Russ hensel (talk | contribs) (→Snips) |
||
(One intermediate revision by the same user not shown) | |||
Line 10: | Line 10: | ||
− | = | + | = Snips = |
− | |||
+ | == Use == | ||
− | |||
− | = | + | == The Internals == |
− | + | Snips are just a bit more complicated than snippets because each snip is itself a whole file. Then there is another file that names and lists the snip files. And finally an entry in parameters that points to the file that lists the snip file names. | |
− | |||
− | |||
− | + | Lets go one at a time: | |
+ | == Customization == | ||
+ | == File with a List of Snip Files == | ||
+ | |||
+ | == Parameters == | ||
+ | |||
+ | These settings of parameters makes the above work or be active in the application. | ||
+ | |||
+ | ( actually called .snip_file_fn ) | ||
+ | |||
+ | |||
+ | |||
+ | self.snip_file_sort = True # sort make them easier to find in the GUI | ||
+ | |||
+ | self.snip_file_path = r"C:\Russ\0000\python00\python3\_examples" | ||
+ | # path prepended to all snip files | ||
+ | self.snip_file_fn = "./snipsand/snip_files_1.txt" | ||
+ | # self.snip_file_fn = "snip_files_2.txt" | ||
+ | # self.snip_file_fn = "snips_file_auto.txt" | ||
+ | # self.snip_file_fn = "snips_file_auto.txt" | ||
+ | # need to associate with extension -- say a dict | ||
+ | # ?? implement or not just use text editor I think | ||
+ | self.snip_file_command = r"c:\apps\Notepad++\notepad++.exe" #russwin10 opens snip files, nice if can run it | ||
+ | |||
+ | |||
+ | self.snip_editor = r"C:\apps\Anaconda3\Scripts\thonny.exe" | ||
+ | |||
+ | For more information on parameters see [[Clipboard Configuration]] and [[Configuration Files For Python]] | ||
[[Category:Python Projects]] [[category:Python]] [[Category:ClipBoard]] | [[Category:Python Projects]] [[category:Python]] [[Category:ClipBoard]] |
Latest revision as of 08:48, 20 March 2020
This is the Help "file" for the Python Application whose main page is: Python Smart Clipboard
The Smart Clipboard has 4 major areas of application:
Contents
Snips[edit]
Use[edit]
The Internals[edit]
Snips are just a bit more complicated than snippets because each snip is itself a whole file. Then there is another file that names and lists the snip files. And finally an entry in parameters that points to the file that lists the snip file names.
Lets go one at a time:
Customization[edit]
File with a List of Snip Files[edit]
Parameters[edit]
These settings of parameters makes the above work or be active in the application.
( actually called .snip_file_fn )
self.snip_file_sort = True # sort make them easier to find in the GUI
self.snip_file_path = r"C:\Russ\0000\python00\python3\_examples" # path prepended to all snip files self.snip_file_fn = "./snipsand/snip_files_1.txt"
- self.snip_file_fn = "snip_files_2.txt"
- self.snip_file_fn = "snips_file_auto.txt"
- self.snip_file_fn = "snips_file_auto.txt"
# need to associate with extension -- say a dict # ?? implement or not just use text editor I think self.snip_file_command = r"c:\apps\Notepad++\notepad++.exe" #russwin10 opens snip files, nice if can run it
self.snip_editor = r"C:\apps\Anaconda3\Scripts\thonny.exe"
For more information on parameters see Clipboard Configuration and Configuration Files For Python