Clipjump : Multiple Clipboards Manager

Submit portable freeware that you find here. It helps if you include information like description, extraction instruction, Unicode support, whether it writes to the registry, and so on.
Message
Author
User avatar
avi-aryan
Posts: 119
Joined: Tue Sep 03, 2013 8:31 am

Re: Clipjump : Multiple Clipboards Manager

#91 Post by avi-aryan »

Midas wrote:
avi-aryan wrote:At a custom fixed position .. like x546,y456 of your screen or so .. It's possible, you will have to use ClipjumpCustom.ini
  • Ok, I'll look into it -- personally, I'd rather have it somewhere near the upper left hand side of the screen... :roll:
Add this in ClipjumpCustom.ini

Code: Select all

[paste_with_search]
bind=Win+V
spm.active=1
spm.x=20
spm.y=80
run=paste
run=searchpm
spm.x and spm.y store paste mode tip position, you need to change those.

User avatar
Midas
Posts: 6738
Joined: Mon Dec 07, 2009 7:09 am
Location: Sol3

Re: Clipjump : Multiple Clipboards Manager

#92 Post by Midas »

Many thanks -- Clipjump is now officially supercool! :mrgreen:

User avatar
avi-aryan
Posts: 119
Joined: Tue Sep 03, 2013 8:31 am

Re: Clipjump : Multiple Clipboards Manager

#93 Post by avi-aryan »

v10.7.2.6 beta released
Clipjump now supports Plugins
Custom Paste Formats like NO-FORMATTING are now possible with the added Plugin Support
Multiple Insta-paste'ing possible in History Tool.
Use Enter in Paste mode to paste without closing Paste mode. After that, release Ctrl to cancel.
Use Ctrl+Enter in Search in Paste mode to paste without closing the window i.e. multi-paste.
ActionMode keys are totally customizable now.
Added Edit option in History
Use %...% in Customizer to declare variables. (Eg > myvar = %some_oldvar% or myvar = %Store.var% )
Also added function support in %..% variables. (Eg > myvar = %myfunc(someparam)% )
Use noautorun=1 in a section in ClipjumpCustom.ini to avoid auto-executing it even if it doesn't have a bind key.
Added API.executeSection() to execute a section at will in ClipjumpCustom.ini
Added Store. object (multi-variable holder) to store variables that are valid throughout the Program's runtime.
Fixes in EditClip option in Paste mode
MORE INFO - http://clipjump.sourceforge.net/beta/

User avatar
avi-aryan
Posts: 119
Joined: Tue Sep 03, 2013 8:31 am

Re: Clipjump : Multiple Clipboards Manager

#94 Post by avi-aryan »

v10.7.8
Fixed paste-formats misbehaving with clip1 when pasting in different formats repeatedly
Fixed "clips not previewing" issue in presence of high-memory programs like Netbeans
Improvements in the hotPaste plugin
Added Image editing support in History Tool
Other Help File and Action Mode enhancements
Already Updated in the database.

Can anybody suggest a better Screenshot. I saw Ditto's , a GIF with screenshots showing its various features ...
Not sure how to make it for Clipjump provided the best part of the program I guess is in the non-gui area.

User avatar
tproli
Posts: 1172
Joined: Sat Sep 09, 2006 10:14 am
Location: Hungary
Contact:

Re: Clipjump : Multiple Clipboards Manager

#95 Post by tproli »

I noticed that the built-in HTMLlist format only prepends "<li>" to the lines but doesn't append the closing "</li>" nor the UL tag.

Here is a modified version which surely needs adjustments but actually works:

Code: Select all

plugin_pformat_commonformats_HTMLlist_1(zin){
	STORE["commonformats_HTMLlist_1"] := "HTML list with UL tag, indents and no empty lines."
	Loop
	{
		StringReplace, zin, zin, `r`n`r`n, `r`n, UseErrorLevel
		if ErrorLevel = 0  ; No more replacements needed.
		break
	}

	tab := "`t"
	zin := RegExReplace( zin, "m`a)^", tab "<li>")
	zin := RegExReplace( zin, "`r`n", "`r`n" tab "</li>`r`n")
	zin := RegExReplace( zin, "<li>", "<li>`r`n" tab) "`r`n" tab "</li>"
	return "<ul>`r`n" zin "`r`n</ul>" , STORE.ClipboardChanged := 1
}
Outputs this:

Code: Select all

<ul>
	<li>
	first line
	</li>
	<li>
	second line
	</li>
	<li>
	third line
	</li>
</ul>

User avatar
Midas
Posts: 6738
Joined: Mon Dec 07, 2009 7:09 am
Location: Sol3

Re: Clipjump : Multiple Clipboards Manager

#96 Post by Midas »

:?: Any estimates for a native 62 bits version yet?

User avatar
I am Baas
Posts: 4150
Joined: Thu Aug 07, 2008 4:51 am

Re: Clipjump : Multiple Clipboards Manager

#97 Post by I am Baas »

Midas wrote::?: Any estimates for a native 62 bits version yet?

62 bits version ??????????????

User avatar
Checker
Posts: 1628
Joined: Wed Jun 20, 2007 1:00 pm
Location: Ingolstadt [DE]

Re: Clipjump : Multiple Clipboards Manager

#98 Post by Checker »

bəʊɡɪ bəəs is back :mrgreen:
Last edited by Checker on Mon Sep 29, 2014 9:10 am, edited 2 times in total.

User avatar
tproli
Posts: 1172
Joined: Sat Sep 09, 2006 10:14 am
Location: Hungary
Contact:

Re: Clipjump : Multiple Clipboards Manager

#99 Post by tproli »

62 bits version ??????????????
For collector's only :)

User avatar
Midas
Posts: 6738
Joined: Mon Dec 07, 2009 7:09 am
Location: Sol3

Re: Clipjump : Multiple Clipboards Manager

#100 Post by Midas »

Typo alert... ah, you guys know what I meant. :D

User avatar
I am Baas
Posts: 4150
Joined: Thu Aug 07, 2008 4:51 am

Re: Clipjump : Multiple Clipboards Manager

#101 Post by I am Baas »

Checker wrote:bəʊɡɪ bəəs is back :mrgreen:
Never been away... :)

User avatar
I am Baas
Posts: 4150
Joined: Thu Aug 07, 2008 4:51 am

Re: Clipjump : Multiple Clipboards Manager

#102 Post by I am Baas »

tproli wrote:
62 bits version ??????????????
For collector's only :)
62 bit seems to be quite popular.

https://encrypted.google.com/#q=62+bit+os

User avatar
I am Baas
Posts: 4150
Joined: Thu Aug 07, 2008 4:51 am

Re: Clipjump : Multiple Clipboards Manager

#103 Post by I am Baas »

Midas wrote:you guys know what I meant. :D
NO

:lol:

User avatar
Midas
Posts: 6738
Joined: Mon Dec 07, 2009 7:09 am
Location: Sol3

Re: Clipjump : Multiple Clipboards Manager

#104 Post by Midas »

:lol:

User avatar
tproli
Posts: 1172
Joined: Sat Sep 09, 2006 10:14 am
Location: Hungary
Contact:

Re: Clipjump : Multiple Clipboards Manager

#105 Post by tproli »

For those who are looking for a text expander application, ClipJump is a nice alternative.

This feature can be achieved using the HotPaste plugin and a syntax like this:

Code: Select all

::pp::
::phpp::
	API.PasteText("<?php  ?>")
	SendInput {LEFT 3}
	return
Note the first two lines - these are the keywords that trigger the expanded text.
This case there is two trigger word ("pp" and "phpp").
By default there is only one keyword.

Another (undocumented) addition is that you can add additional AHK commands too.
In this example the line "SendInput {LEFT 3}" is extra, and that moves the cursor to the middle of the expanded text: "<?php | ?>".
Of course you can use other nifty things, eg. "SendInput {TAB}" to move to the next input field, eg. when filling forms.

Out of the box Clipjump expands abbreviations when space, tab or enter is pressed.
I prefer only the tab key because the other two often expand words that I don't want to.
To fix this, edit "ClipJump\plugins\hotPaste.ahk" and set line 8 to

Code: Select all

#Hotstring EndChars `t
(and restart ClipJump)

Post Reply