Qual é o plugin para as máscaras no notpad+++?

$("input[type=radio][name=tipo]").change(function(){
	var tipo = $(this).val();
	mudaTipo(tipo);
	console.log(tipo);
});

$("#cpf-cnpj").mask('000.000.000-00');
$("#cep").mask(00000-000);

function mudaTipo(value){
	$("#cpf-cnpj").val();
	$("#cpf-cnpj").select():
	
	if(value==2){
		$("#cpf-cnpj").mask('00.000.000/0000-00');
		$("#label-cpf-cnpj").text('CNPJ');
		$("#cpf-cnpj").attr("placeholder", "___.___.___/___.-___");
		$("#cpf-cnpj").attr("minlength","18");
	}
	else{
		$("#cpf-cnpj").mask('000.000.000-00');
		$("#label-cpf-cnpj").text('CPF');
		$("#cpf-cnpj").attr("placeholder", "___.___.___.-___");
		$("#cpf-cnpj").attr("minlength","14");
	}
}